# HG changeset patch # User Markus Mützel # Date 1649694845 -7200 # Node ID fc3b7160ba77b11a24db202d8fc86e8be6054cf6 # Parent 5044c6918fdf7970d276fba964e5d6fd953a5907 Fix test broken in 5044c6918fdf. * libinterp/parse-tree/bp-table.cc: Adapt test for changed line numbers in "ls". diff -r 5044c6918fdf -r fc3b7160ba77 libinterp/parse-tree/bp-table.cc --- a/libinterp/parse-tree/bp-table.cc Mon Apr 11 15:58:27 2022 +0200 +++ b/libinterp/parse-tree/bp-table.cc Mon Apr 11 18:34:05 2022 +0200 @@ -539,13 +539,13 @@ %! dbstop help; %! dbstop in ls; %! dbstop help at 104; -%! dbstop in ls 102; ## 102 is a comment; code line is at 105 +%! dbstop in ls 121; ## 121 is a comment; code line is at 124 %! dbstop help 204 if a==5; %! dbstop if error Octave:undefined-function; %! s = dbstatus; %! dbclear all; %! assert ({s.bkpt(:).name}, {"help", "help", "help>do_contents", "ls", "ls"}); -%! assert ([s.bkpt(:).line], [55, 105, 207, 63, 102]); +%! assert ([s.bkpt(:).line], [55, 105, 207, 63, 124]); %! assert (s.errs, {"Octave:undefined-function"}); */