comparison test/bug-61201.tst @ 30324:49c8538c64c4

update bug status Modified files: mappers.cc, which.m, bug-61191.tst, and bug-61201.tst.
author John W. Eaton <jwe@octave.org>
date Tue, 23 Nov 2021 09:57:51 -0500
parents 75fb18f0469a
children 796f54d4ddbf
comparison
equal deleted inserted replaced
30323:f69f749aad9b 30324:49c8538c64c4
51 %! catch (ex) 51 %! catch (ex)
52 %! lineno = ex.stack(1).line; 52 %! lineno = ex.stack(1).line;
53 %! end_try_catch 53 %! end_try_catch
54 %!endfunction 54 %!endfunction
55 55
56 %!assert<61201> (test_conditional_lines ("while"), 8) 56 %!assert<*61201> (test_conditional_lines ("while"), 8)
57 57
58 %!assert<61201> (test_conditional_lines ("if"), 18) 58 %!assert<*61201> (test_conditional_lines ("if"), 18)
59 59
60 %!assert<61201> (test_conditional_lines ("elseif"), 23) 60 %!assert<*61201> (test_conditional_lines ("elseif"), 23)
61 61
62 ## Because the DO-UNTIL statement is not part of Matlab it is not 62 ## Because the DO-UNTIL statement is not part of Matlab it is not
63 ## eligible for Matlab-style short-circuit behavior in Octave. 63 ## eligible for Matlab-style short-circuit behavior in Octave.
64 %!assert<61201> (test_conditional_lines ("until"), -42) 64 %!assert<*61201> (test_conditional_lines ("until"), -42)