- Patches dropped: * fixup-gdb-6.3-gstack-20050411.patch * fixup-skip-tests.patch * gdb-6.6-buildid-locate-rpm-librpm-workaround.patch * gdb-6.6-buildid-locate-rpm.patch - Patches added: * gdb-add-missing-debug-ext-lang-hook.patch * gdb-add-missing-debug-info-python-hook.patch * gdb-add-rpm-suggestion-script.patch * gdb-do-not-import-py-curses-ascii-module.patch * gdb-handle-no-python-gdb-module.patch * gdb-merge-debug-symbol-lookup.patch * gdb-python-avoid-depending-on-the-curses-library.patch * gdb-refactor-find-and-add-separate-symbol-file.patch * gdb-reformat-missing-debug-py-file.patch * gdb-remove-path-in-test-name.patch * gdb-remove-use-of-py-isascii * gdb-sync-coffread-with-elfread.patch - Patches updated: * fixup-gdb-bz634108-solib_address.patch * gdb-6.3-gstack-20050411.patch * gdb-6.6-buildid-locate-rpm-suse.patch * gdb-6.6-buildid-locate-solib-missing-ids.patch * gdb-6.6-buildid-locate.patch * gdb-archer-next-over-throw-cxx-exec.patch * gdb-bz634108-solib_address.patch * gdb-fedora-libncursesw.patch * gdb-glibc-strstr-workaround.patch * gdb-rhbz1007614-memleak-infpy_read_memory-test.patch OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gdb?expand=0&rev=409
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 \
|