aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2021-06-08 15:36:46 +0200
committerTom de Vries <tdevries@suse.de>2021-06-08 15:36:46 +0200
commit58f076c6f86dc8361f2e6a6c67940fd9b5ad9a60 (patch)
treec3605f25c5d6f2b9262d51ac8cd4e6073814e1a9
parent7c757f41aaab38396066d0d57d084a3dc2f5a7d3 (diff)
downloadfsf-binutils-gdb-58f076c6f86dc8361f2e6a6c67940fd9b5ad9a60.zip
fsf-binutils-gdb-58f076c6f86dc8361f2e6a6c67940fd9b5ad9a60.tar.gz
fsf-binutils-gdb-58f076c6f86dc8361f2e6a6c67940fd9b5ad9a60.tar.bz2
[gdb/testsuite] Simplify gdb.base/info-types.exp.tcl further
After adding support for --any in match_line, we can simplify gdb.base/info-types.exp.tcl further: we can add the "All defined types:" regexp in the output_lines list: ... set output_lines \ [list \ + "All defined types:" \ + "--any" \ $file_re \ ... Consequently, we can simplify the state machine to track a variable "found" with values: - 0 (unmatched) - 1 (matched) - -1 (mismatch). This makes the code generic enough to factor out into a new proc gdb_test_lines. Tested on x86_64-linux. gdb/testsuite/ChangeLog: 2021-06-08 Tom de Vries <tdevries@suse.de> * gdb.base/info-types.exp.tcl (match_line): Handle --any. (gdb_test_lines): Factor out of ... (run_test): ... here.
-rw-r--r--gdb/testsuite/ChangeLog6
-rw-r--r--gdb/testsuite/gdb.base/info-types.exp.tcl71
2 files changed, 46 insertions, 31 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index cd62633..06880fa 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,11 @@
2021-06-08 Tom de Vries <tdevries@suse.de>
+ * gdb.base/info-types.exp.tcl (match_line): Handle --any.
+ (gdb_test_lines): Factor out of ...
+ (run_test): ... here.
+
+2021-06-08 Tom de Vries <tdevries@suse.de>
+
* gdb.base/batch-preserve-term-settings.exp (spawn_shell): Fix
matching of initial prompt.
diff --git a/gdb/testsuite/gdb.base/info-types.exp.tcl b/gdb/testsuite/gdb.base/info-types.exp.tcl
index 104fdb3..eef4b07 100644
--- a/gdb/testsuite/gdb.base/info-types.exp.tcl
+++ b/gdb/testsuite/gdb.base/info-types.exp.tcl
@@ -16,7 +16,8 @@
# Check that 'info types' produces the expected output for an inferior
# containing a number of different types.
-# Match LINE against regexp OUTPUT_LINES[IDX].
+# Match LINE against regexp OUTPUT_LINES[IDX]. Helper function for
+# gdb_test_lines.
proc match_line { line output_lines idx_name } {
upvar $idx_name idx
@@ -27,14 +28,17 @@ proc match_line { line output_lines idx_name } {
}
set re [lindex $output_lines $idx]
+ set opt 0
+ set any 0
if { $re == "--optional" } {
# Optional, get actual regexp.
set opt 1
incr idx
set re [lindex $output_lines $idx]
- } else {
- # Not optional.
- set opt 0
+ } elseif { $re == "--any" } {
+ set any 1
+ incr idx
+ set re [lindex $output_lines $idx]
}
if { [regexp $re $line] } {
@@ -55,6 +59,10 @@ proc match_line { line output_lines idx_name } {
# Try next regexp on same line.
incr idx
continue
+ } elseif { $any } {
+ # Try again with next line.
+ incr idx -1
+ return 0
} else {
# Mismatch, bail out.
return -1
@@ -67,6 +75,29 @@ proc match_line { line output_lines idx_name } {
return 0
}
+# Match output of COMMAND line-by-line, using PATTERNS.
+# Report pass/fail with MESSAGE.
+
+proc gdb_test_lines { command message patterns } {
+ set found 0
+ set idx 0
+ if { $message == ""} {
+ set message $command
+ }
+ gdb_test_multiple $command $message {
+ -re "\r\n(\[^\r\n\]*)(?=\r\n)" {
+ if { $found == 0 } {
+ set line $expect_out(1,string)
+ set found [match_line $line $patterns idx]
+ }
+ exp_continue
+ }
+ -re -wrap "" {
+ gdb_assert { $found == 1 } $gdb_test_name
+ }
+ }
+}
+
# Run 'info types' test, compiling the test file for language LANG,
# which should be either 'c' or 'c++'.
proc run_test { lang } {
@@ -94,6 +125,8 @@ proc run_test { lang } {
if { $lang == "c++" } {
set output_lines \
[list \
+ "All defined types:" \
+ "--any" \
$file_re \
"98:\[\t \]+CL;" \
"42:\[\t \]+anon_struct_t;" \
@@ -129,6 +162,8 @@ proc run_test { lang } {
} else {
set output_lines \
[list \
+ "All defined types:" \
+ "--any" \
$file_re \
"52:\[\t \]+typedef enum {\\.\\.\\.} anon_enum_t;" \
"45:\[\t \]+typedef struct {\\.\\.\\.} anon_struct_t;" \
@@ -157,33 +192,7 @@ proc run_test { lang } {
""]
}
- set state 0
- set idx 0
- gdb_test_multiple "info types" "" {
- -re "\r\nAll defined types:" {
- if { $state == 0 } { set state 1 } else { set state -1 }
- exp_continue
- }
- -re "^\r\n(\[^\r\n\]*)(?=\r\n)" {
- if { $state == 1 } {
- set line $expect_out(1,string)
- set res [match_line $line $output_lines idx]
- if { $res == 1 } {
- set state 2
- } elseif { $res == -1 } {
- set state -2
- }
- }
- exp_continue
- }
- -re -wrap "" {
- if { $state == 2} {
- pass $gdb_test_name
- } else {
- fail "$gdb_test_name (state == $state)"
- }
- }
- }
+ gdb_test_lines "info types" "" $output_lines
}
run_test $lang