# HG changeset patch # User Rik # Date 1650574009 25200 # Node ID 0d06084693dd90a2c16a7ebe23dbeee92f518ae7 # Parent 0acf9363da34669c1a17f8bc9baf18f1ed9d889d test: Fix failing BIST test due to changes in cset c09fdabaa5b6. * bp-table.cc: Change line numbers in BIST test for 'ls' which changed when documentation was updated in ls.m diff -r 0acf9363da34 -r 0d06084693dd libinterp/parse-tree/bp-table.cc --- a/libinterp/parse-tree/bp-table.cc Thu Apr 21 12:03:41 2022 -0700 +++ b/libinterp/parse-tree/bp-table.cc Thu Apr 21 13:46:49 2022 -0700 @@ -539,13 +539,13 @@ %! dbstop help; %! dbstop in ls; %! dbstop help at 104; -%! dbstop in ls 121; ## 121 is a comment; code line is at 124 +%! dbstop in ls 123; ## 123 is a comment; code line is at 126 %! 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, 124]); +%! assert ([s.bkpt(:).line], [55, 105, 207, 63, 126]); %! assert (s.errs, {"Octave:undefined-function"}); */