comparison test/bug-35448/bug-35448.tst @ 31564:332a6ccac881 stable

maint: cleanup code in BIST tests to use Octave coding conventions. * data.cc: Use keyword "endfor" rather than bare "end". * file-io.cc, graphics.cc: Remove semicolon ';' at end of "end_try_catch" keyword. * variables.cc, bug-35448.tst, bug-53027.tst, bug-53579.tst, bug-53599.tst, bug-53956.tst, bug-55758.tst, global.tst: Use semicolon ';' after "global" variable declaration. * for.tst, io.tst: Delete semicolon ';' at end of "for" loop declaration. * struct.tst: Delete semicolon ';' at end of "function" declaration.
author Rik <rik@octave.org>
date Sun, 27 Nov 2022 17:01:00 -0800
parents 796f54d4ddbf
children 597f3ee61a48
comparison
equal deleted inserted replaced
31562:8029e9b88950 31564:332a6ccac881
22 ## <https://www.gnu.org/licenses/>. 22 ## <https://www.gnu.org/licenses/>.
23 ## 23 ##
24 ######################################################################## 24 ########################################################################
25 25
26 %!test <*35448> 26 %!test <*35448>
27 %! global gfun 27 %! global gfun;
28 %! gfun = @fB; 28 %! gfun = @fB;
29 %! y = fA (e); 29 %! y = fA (e);
30 %! assert (y, e); 30 %! assert (y, e);
31 %! clear -global gfun; # cleanup after test 31 %! clear -global gfun; # cleanup after test
32 32
33 %!test <*35448> 33 %!test <*35448>
34 %! global gfun 34 %! global gfun;
35 %! gfun = @fC; 35 %! gfun = @fC;
36 %! y = fA (e); 36 %! y = fA (e);
37 %! assert (y, e); 37 %! assert (y, e);
38 %! clear -global gfun; # cleanup after test 38 %! clear -global gfun; # cleanup after test