Mercurial > hg > octave-lojdl
changeset 13044:a04e32272ecb
codesprint: Turn off test warning for various internal helper functions
* __makeinfo__.m, __all_opts__.m, __gnuplot_drawnow__.m, __go_close_all__.m,
__plt_get_axis_arg__.m: Use %!assert(1) to disable test warning.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sat, 03 Sep 2011 08:32:58 -0700 |
parents | 098c8e696236 |
children | 92cb87addf25 |
files | scripts/help/__makeinfo__.m scripts/optimization/__all_opts__.m scripts/plot/__gnuplot_drawnow__.m scripts/plot/__go_close_all__.m scripts/plot/__plt_get_axis_arg__.m |
diffstat | 5 files changed, 19 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/help/__makeinfo__.m +++ b/scripts/help/__makeinfo__.m @@ -119,3 +119,6 @@ end_unwind_protect endfunction +## No test needed for internal helper function. +%!assert (1) +
--- a/scripts/optimization/__all_opts__.m +++ b/scripts/optimization/__all_opts__.m @@ -67,3 +67,7 @@ endfunction + +## No test needed for internal helper function. +%!assert (1) +
--- a/scripts/plot/__gnuplot_drawnow__.m +++ b/scripts/plot/__gnuplot_drawnow__.m @@ -386,3 +386,7 @@ endif endif endfunction + + +## No test needed for internal helper function. +%!assert (1)