30 lines
1.0 KiB
Diff
30 lines
1.0 KiB
Diff
|
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
|
||
|
From: Tom Tromey <tromey@adacore.com>
|
||
|
Date: Tue, 14 Nov 2023 11:47:27 -0700
|
||
|
Subject: gdb-remove-path-in-test-name.patch
|
||
|
|
||
|
;; Backport upstream commit 1146d27749f.
|
||
|
|
||
|
Remove path name from test case
|
||
|
|
||
|
'runtest' complains about a path in a test name, from the new test
|
||
|
case py-missing-debug.exp.
|
||
|
|
||
|
This patch fixes the problem by providing an explicit test name to
|
||
|
gdb_test. I chose something very basic because the block in question
|
||
|
is already wrapped in with_test_prefix.
|
||
|
|
||
|
diff --git a/gdb/testsuite/gdb.python/py-missing-debug.exp b/gdb/testsuite/gdb.python/py-missing-debug.exp
|
||
|
--- a/gdb/testsuite/gdb.python/py-missing-debug.exp
|
||
|
+++ b/gdb/testsuite/gdb.python/py-missing-debug.exp
|
||
|
@@ -321,7 +321,8 @@ with_test_prefix "enable 'abc-def'" {
|
||
|
set re [string_to_regexp $binfile]
|
||
|
|
||
|
gdb_test "enable missing-debug-handler \"$re\" abc-def" \
|
||
|
- "^1 missing debug handler enabled"
|
||
|
+ "^1 missing debug handler enabled" \
|
||
|
+ "enable missing-debug-handler"
|
||
|
|
||
|
gdb_test "info missing-debug-handlers" \
|
||
|
[multi_line \
|