annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
28011
b31a118729ed update bug status for tests
John W. Eaton <jwe@octave.org>
parents: 26926
diff changeset
1 %!test <*53956>
26926
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 %! global dtor2_called dtor4_called
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 %!
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 %! dtor2_called = dtor4_called = 0;
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 %! x = bug53956_class_3 ();
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 %! clear x
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 %! assert (dtor2_called, 1);
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 %!
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 %! dtor2_called = dtor4_called = 0;
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 %! x = bug53956_class_4 ();
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 %! clear x
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 %! assert (dtor2_called, 1);
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 %! assert (dtor4_called, 1);
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 %!
71724787d972 don't call inherited delete methods (bug #53956)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 %! clear -global dtor2_called dtor4_called; # cleanup after test