aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2021-01-04 16:48:48 +0100
committerTom de Vries <tdevries@suse.de>2021-01-04 16:48:48 +0100
commitc5e71b3332279ece95a7872aee2890af3ee047b4 (patch)
tree1f412b107a4e9eb66b6cce3238e3af7350b91d40 /gdb
parent098caef485a4ece6096e6cdbb4cd9726e4a13386 (diff)
downloadfsf-binutils-gdb-c5e71b3332279ece95a7872aee2890af3ee047b4.zip
fsf-binutils-gdb-c5e71b3332279ece95a7872aee2890af3ee047b4.tar.gz
fsf-binutils-gdb-c5e71b3332279ece95a7872aee2890af3ee047b4.tar.bz2
[gdb/testsuite] Don't require gold for gdb.base/morestack.exp
While working on PR26935 I noticed that the test-case requires the gold linker, but doesn't really need it. The -fuse-ld=gold was added to support the printf in the test-case, which prints some information but is not otherwise needed for the test-case. Fix this by removing the printf and the corresponding -fuse-ld=gold. Tested on x86_64-linux. Also checked that the test still fails when the fix from the commit that added the test-case is reverted. gdb/testsuite/ChangeLog: 2021-01-04 Tom de Vries <tdevries@suse.de> * gdb.base/morestack.c: Remove printf. * gdb.base/morestack.exp: Don't use -fuse-ld=gold.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/gdb.base/morestack.c5
-rw-r--r--gdb/testsuite/gdb.base/morestack.exp8
3 files changed, 7 insertions, 11 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 0074c8f..36644bb 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2021-01-04 Tom de Vries <tdevries@suse.de>
+
+ * gdb.base/morestack.c: Remove printf.
+ * gdb.base/morestack.exp: Don't use -fuse-ld=gold.
+
2020-12-31 Tom Tromey <tom@tromey.com>
* gdb.rust/simple.exp: Update output for Rust 1.49.
diff --git a/gdb/testsuite/gdb.base/morestack.c b/gdb/testsuite/gdb.base/morestack.c
index 6f9a27e..78ab3db 100644
--- a/gdb/testsuite/gdb.base/morestack.c
+++ b/gdb/testsuite/gdb.base/morestack.c
@@ -62,10 +62,7 @@ down (int i)
static void *last;
if (last && last < (void *) buf)
- {
- printf ("%d: %p < %p\n", i, last, buf);
- marker_hit ();
- }
+ marker_hit ();
last = buf;
if (i == 500)
diff --git a/gdb/testsuite/gdb.base/morestack.exp b/gdb/testsuite/gdb.base/morestack.exp
index 627ae81..99807a2 100644
--- a/gdb/testsuite/gdb.base/morestack.exp
+++ b/gdb/testsuite/gdb.base/morestack.exp
@@ -21,17 +21,11 @@ if {$gcc_compiled == 0} {
return -1
}
-if { [have_fuse_ld_gold] == 0} {
- return -1
-}
-
standard_testfile
-# -fuse-ld=gold is used for calling printf code built without -fsplit-stack
-# which could crash otherwise. See GCC documentation of -fsplit-stack.
set opts "additional_flags=-fsplit-stack"
if { [prepare_for_testing "failed to prepare" ${testfile} $srcfile \
- [list $opts additional_flags=-fuse-ld=gold]] } {
+ [list $opts]] } {
return -1
}