-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove highlighting in bug-loc test...
We really ensre that highlighting is in effect, and highlighting markup is fragile
- Loading branch information
Showing
2 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
(bug-loc.sh:5): | ||
5: [31mdirname[39;49;00m=[33m${[39;49;00m[31mBASH_SOURCE[39;49;00m%/*[33m}[39;49;00m [37m# equivalent to dirname($0)[39;49;00m | ||
5: dirname=${BASH_SOURCE%/*} # equivalent to dirname($0) | ||
+# Test to see that we read in files that mentioned in breakpoints | ||
+# but we don't step into. | ||
+step | ||
+step | ||
(bug-loc.sh:6): | ||
6: [36msource[39;49;00m [33m${[39;49;00m[31mdirname[39;49;00m[33m}[39;49;00m/library.sh | ||
+step | ||
6: source ${dirname}/library.sh | ||
+step | ||
(bug-loc.sh:7): | ||
7: [36mecho[39;49;00m [33m'script line 7'[39;49;00m | ||
+step | ||
7: echo 'script line 7' | ||
+step | ||
script line 7 | ||
(bug-loc.sh:8): | ||
8: library-function | ||
+step | ||
+step | ||
(library.sh:1): | ||
1: library-function() { | ||
+step | ||
+step | ||
(library.sh:2): | ||
2: [36mecho[39;49;00m [33m'library line 2 in library-function'[39;49;00m | ||
+step | ||
2: echo 'library line 2 in library-function' | ||
+step | ||
library line 2 in library-function | ||
(bug-loc.sh:11): | ||
11: [36mecho[39;49;00m [33m'script line 11'[39;49;00m | ||
+quit | ||
11: echo 'script line 11' | ||
+quit | ||
bashdb: That's all, folks... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters