comparison test/bug-53579.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 34617dd78f02
children 13362cd35b72
comparison
equal deleted inserted replaced
31562:8029e9b88950 31564:332a6ccac881
1 %!function [raa, rbb, igaa, igbb] = sub1 (aa, bb) 1 %!function [raa, rbb, igaa, igbb] = sub1 (aa, bb)
2 %! global aa bb 2 %! global aa bb;
3 %! aa = 1; 3 %! aa = 1;
4 %! raa = aa; 4 %! raa = aa;
5 %! rbb = bb; 5 %! rbb = bb;
6 %! igaa = isglobal ("aa"); 6 %! igaa = isglobal ("aa");
7 %! igbb = isglobal ("bb"); 7 %! igbb = isglobal ("bb");
8 %!endfunction 8 %!endfunction
9 9
10 %!test <*53579> 10 %!test <*53579>
11 %! global aa bb 11 %! global aa bb;
12 %! assert (isglobal ("aa")); 12 %! assert (isglobal ("aa"));
13 %! assert (isglobal ("bb")); 13 %! assert (isglobal ("bb"));
14 %! aa = 3; 14 %! aa = 3;
15 %! xx = 5; 15 %! xx = 5;
16 %! [raa, rbb, igaa, igbb] = sub1 (aa, xx); 16 %! [raa, rbb, igaa, igbb] = sub1 (aa, xx);