- Master backport: * gdb-fix-breakpoints-on-file-reloads-for-pie-binaries.patch - Master backports testsuite: * gdb-testsuite-i386-pkru-exp.patch * gdb-testsuite-read1-fixes.patch * gdb-testsuite-pie-no-pie.patch * gdb-testsuite-add-missing-initial-prompt-read-in-multidictionary.exp.patch - Work around bsc#1115034: * gdb-testsuite-ada-pie.patch - Fixes for fedora patches: * gdb-testsuite-fix-perror-in-gdb.opt-fortran-string.exp.patch * gdb-testsuite-avoid-pagination-in-attach-32.exp.patch OBS-URL: https://build.opensuse.org/request/show/721544 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gdb?expand=0&rev=219
48 lines
1.4 KiB
Diff
48 lines
1.4 KiB
Diff
commit 1512d3b7b9de3a1943623f2e1f373459d5d80a98
|
|
Author: Tom de Vries <tdevries@suse.de>
|
|
Date: Fri Jul 26 21:49:45 2019 +0200
|
|
|
|
[gdb/testsuite] Fix unterminated string in i386-pkru.exp
|
|
|
|
I ran into this error:
|
|
...
|
|
ERROR: tcl error sourcing gdb/testsuite/gdb.arch/i386-pkru.exp.
|
|
ERROR: missing "
|
|
while executing
|
|
"untested ""
|
|
invoked from within
|
|
"if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile} \
|
|
[list debug additional_flags=${comp_flags}]] } {
|
|
untested "failed to c..."
|
|
(file "gdb/testsuite/gdb.arch/i386-pkru.exp" line 25)
|
|
invoked from within
|
|
...
|
|
caused by:
|
|
...
|
|
untested "failed to compile x86 PKEYS test.
|
|
...
|
|
|
|
Fix the unterminated string.
|
|
|
|
Tested on x86_64-linux.
|
|
|
|
gdb/testsuite/ChangeLog:
|
|
|
|
2019-07-26 Tom de Vries <tdevries@suse.de>
|
|
|
|
* gdb.arch/i386-pkru.exp: Fix unterminated string.
|
|
|
|
diff --git a/gdb/testsuite/gdb.arch/i386-pkru.exp b/gdb/testsuite/gdb.arch/i386-pkru.exp
|
|
index 7a2c65799e..db271522f0 100644
|
|
--- a/gdb/testsuite/gdb.arch/i386-pkru.exp
|
|
+++ b/gdb/testsuite/gdb.arch/i386-pkru.exp
|
|
@@ -24,7 +24,7 @@ set comp_flags "-I${srcdir}/../nat/"
|
|
|
|
if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile} \
|
|
[list debug additional_flags=${comp_flags}]] } {
|
|
- untested "failed to compile x86 PKEYS test.
|
|
+ untested "failed to compile x86 PKEYS test."
|
|
return -1
|
|
}
|
|
|