[gdb/testsuite] Don't require gold for gdb.base/morestack.exp
authorTom de Vries <tdevries@suse.de>
Mon, 4 Jan 2021 15:48:48 +0000 (16:48 +0100)
committerTom de Vries <tdevries@suse.de>
Mon, 4 Jan 2021 15:48:48 +0000 (16:48 +0100)
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.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/morestack.c
gdb/testsuite/gdb.base/morestack.exp

index 0074c8fb6f0f493c6787bd515034612ca9ae8a06..36644bb1e4767a08c7556354adf992460ac76bb5 100644 (file)
@@ -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.
index 6f9a27ed2c82b1a3721eb05eb547197075acc381..78ab3db93f90abe5c74d81ecf1f86bf68838a77c 100644 (file)
@@ -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)
index 627ae8164c3a3a7f2566fdf391c468eafa4fa554..99807a291eef9e40ad0f552b06805ce048065b16 100644 (file)
@@ -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
 }