changeset 27913:8df92c17bb5c

fix failing test after cset 4d6d21839dfd (bug #57540) * bp-table.cc: Update ls.m line numbers after recent change.
author Mike Miller <mtmiller@octave.org>
date Sat, 04 Jan 2020 17:16:59 -0800
parents 84d6abff1006
children a044e50c8dcb
files libinterp/parse-tree/bp-table.cc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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"});
 */