diff options
author | Maciej W. Rozycki <macro@imgtec.com> | 2017-02-02 19:09:57 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@imgtec.com> | 2017-02-02 22:30:55 +0000 |
commit | 2e9af2d0de9534765e7394d10b2d307c4259de31 (patch) | |
tree | e83d7939c8f7cc07f41b91458067fe7cd17d87d1 /ld | |
parent | 8f56d4fd28b887cc709524b1993c9da4c64b0696 (diff) | |
download | gdb-2e9af2d0de9534765e7394d10b2d307c4259de31.zip gdb-2e9af2d0de9534765e7394d10b2d307c4259de31.tar.gz gdb-2e9af2d0de9534765e7394d10b2d307c4259de31.tar.bz2 |
LD/testsuite: ld-lib.exp: Fix a typo, s/regexp/regex/
Match `$check_ld(source)' against "regex" rather than "regexp" in
reporting, correcting test framework diagnostics, e.g.:
tmpdir/undefined.o: In function `foo':
(.text+0x0): undefined reference to `bar'
failed with: <tmpdir/undefined.o: In function `foo':
(.text+0x0): undefined reference to `bar'>, no expected output
tmpdir/undefined.o: In function `foo':
(.text+0x0): undefined reference to `bar'
PASS: MIPS undefined reference
(current) vs:
tmpdir/undefined.o: In function `foo':
(.text+0x0): undefined reference to `bar'
failed with: <tmpdir/undefined.o: In function `foo':
(.text+0x0): undefined reference to `bar'>, expected: <\A[^\n]*\.o: In function `foo':\n\(\.text\+0x0\): undefined reference to `bar'\Z>
tmpdir/undefined.o: In function `foo':
(.text+0x0): undefined reference to `bar'
PASS: MIPS undefined reference
(corrected). No functional change.
ld/
* ld/testsuite/lib/ld-lib.exp (run_dump_test): Fix a typo,
s/regexp/regex/.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/testsuite/lib/ld-lib.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 1ce8439..ca3b651 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2017-02-02 Maciej W. Rozycki <macro@imgtec.com> + + * ld/testsuite/lib/ld-lib.exp (run_dump_test): Fix a typo, + s/regexp/regex/. + 2017-02-02 Jiong Wang <jiong.wang@arm.com> * testsuite/lib/ld-lib.exp (check_libdl_available): New function. diff --git a/ld/testsuite/lib/ld-lib.exp b/ld/testsuite/lib/ld-lib.exp index 61626ec..fece871 100644 --- a/ld/testsuite/lib/ld-lib.exp +++ b/ld/testsuite/lib/ld-lib.exp @@ -956,7 +956,7 @@ proc run_dump_test { name {extra_options {}} } { set exitstat "succeeded" if { $cmdret != 0 } { set exitstat "failed" } - if { $check_ld(source) == "regexp" } { + if { $check_ld(source) == "regex" } { verbose -log "$exitstat with: <$comp_output>, expected: <$check_ld(regex)>" } elseif { $check_ld(source) == "file" } { verbose -log "$exitstat with: <$comp_output>, expected in file $check_ld(file)" |