diff test/global.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
line wrap: on
line diff
--- a/test/global.tst	Sun Nov 27 16:58:42 2022 -0500
+++ b/test/global.tst	Sun Nov 27 17:01:00 2022 -0800
@@ -104,16 +104,16 @@
 %!test
 %! warning ("off", "Octave:global-local-conflict", "local");
 %! clear global x      ## clears global and local value
-%! global x
+%! global x;
 %! x = 0;
 %! assert (f (), 0);
-%! global x
+%! global x;
 %! assert (x, 0);
 %!test
 %! warning ("off", "Octave:global-local-conflict", "local");
 %! clear global x      ## clears global and local value
 %! assert (f (), 1);
-%! global x
+%! global x;
 %! assert (x, 1);
 %! clear -global x;  # cleanup after test
 
@@ -125,16 +125,16 @@
 %!test
 %! warning ("off", "Octave:global-local-conflict", "local");
 %! clear global x      ## clears global and local value
-%! global x
+%! global x;
 %! x = 0;
 %! assert (f (), 0);
-%! global x
+%! global x;
 %! assert (x, 0);
 %!test
 %! warning ("off", "Octave:global-local-conflict", "local");
 %! clear global x
 %! assert (f (), 1);
-%! global x
+%! global x;
 %! assert (x, 1);
 %! clear -global x;  # cleanup after test
 
@@ -142,7 +142,7 @@
 %! warning ("off", "Octave:global-local-conflict", "local");
 %! clear global x      ## clears global and local value
 %! x = 42;             ## local value
-%! global x            ## link to undefined global, global gets local value
+%! global x;           ## link to undefined global, global gets local value
 %! assert (x, 42);
 %! clear x             ## clears local; global still defined
 %! x = 13;             ## new local value