view test/bug-53956/bug-53956.tst @ 31214:19bd1953fc1d stable

GitHub-CI: Remove ubuntu-18.04 runners from build matrix. * .github/workflow/make.yaml (ubuntu): GitHub-hosted runners for ubuntu-18.04 are being deprecated. Remove them from build matrix. See also: https://github.com/actions/runner-images/issues/6002
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 30 Aug 2022 11:16:27 +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