comparison test/bug-53956/bug-53956.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 b31a118729ed
children
comparison
equal deleted inserted replaced
31562:8029e9b88950 31564:332a6ccac881
1 %!test <*53956> 1 %!test <*53956>
2 %! global dtor2_called dtor4_called 2 %! global dtor2_called dtor4_called;
3 %! 3 %!
4 %! dtor2_called = dtor4_called = 0; 4 %! dtor2_called = dtor4_called = 0;
5 %! x = bug53956_class_3 (); 5 %! x = bug53956_class_3 ();
6 %! clear x 6 %! clear x
7 %! assert (dtor2_called, 1); 7 %! assert (dtor2_called, 1);