view test/bug-53956/bug-53956.tst @ 31203:4c2b83516eb7

isequal.m: Run BISTs for Java objects only conditionally (bug #62930). * scripts/general/isequal.m: Run BISTs for Java objects only if Octave was configured with Java support and a Java VM is available at runtime.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 26 Aug 2022 22:30:43 +0200
parents b31a118729ed
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