# HG changeset patch # User Mike Miller # Date 1578187019 28800 # Node ID 8df92c17bb5c36e14a183e9f18d703068ee9403c # Parent 84d6abff10060fa318f4e52348dfd772b44168fb fix failing test after cset 4d6d21839dfd (bug #57540) * bp-table.cc: Update ls.m line numbers after recent change. diff -r 84d6abff1006 -r 8df92c17bb5c libinterp/parse-tree/bp-table.cc --- a/libinterp/parse-tree/bp-table.cc Sat Jan 04 09:51:26 2020 -0500 +++ b/libinterp/parse-tree/bp-table.cc Sat Jan 04 17:16:59 2020 -0800 @@ -481,13 +481,13 @@ %! dbstop help; %! dbstop in ls; %! dbstop help at 100; -%! dbstop in ls 100; ## 100 is a comment; code line is at 103 +%! dbstop in ls 98; ## 98 is a comment; code line is at 101 %! dbstop help 201 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], [48, 100, 201, 58, 103]); +%! assert ([s.bkpt(:).line], [48, 100, 201, 56, 101]); %! assert (s.errs, {"Octave:undefined-function"}); */