view test/bug-53956/bug-53956.tst @ 28011:b31a118729ed

update bug status for tests Files affected: pr-output.cc, griddatan.m, legend.m, movstd.m, movvar.m, and bug-53956.tst.
author John W. Eaton <jwe@octave.org>
date Sun, 26 Jan 2020 23:16:24 -0500
parents 71724787d972
children 332a6ccac881
line wrap: on
line source

%!test <*53956>
%! global dtor2_called dtor4_called
%!
%! dtor2_called = dtor4_called = 0;
%! x = bug53956_class_3 ();
%! clear x
%! assert (dtor2_called, 1);
%!
%! dtor2_called = dtor4_called = 0;
%! x = bug53956_class_4 ();
%! clear x
%! assert (dtor2_called, 1);
%! assert (dtor4_called, 1);
%!
%! clear -global dtor2_called dtor4_called;  # cleanup after test