public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [pushed] [gdb/testsuite] Require -fsplit-stack in gdb.base/morestack.exp
@ 2023-02-21 13:41 Tom de Vries
  0 siblings, 0 replies; only message in thread
From: Tom de Vries @ 2023-02-21 13:41 UTC (permalink / raw)
  To: gdb-patches

On aarch64-linux, I run into:
...
gdb compile failed, cc1: error: '-fsplit-stack' is not supported by this \
  compiler configuration
UNTESTED: gdb.base/morestack.exp: failed to prepare
...

Fix this by requiring -fsplit-stack, such that we have instead:
...
UNSUPPORTED: gdb.base/morestack.exp: require failed: \
  expr [have_compile_flag -fsplit-stack]
...

Tested on x86_64-linux and aarch64-linux.
---
 gdb/testsuite/gdb.base/morestack.exp | 2 ++
 gdb/testsuite/lib/gdb.exp            | 8 ++++++++
 2 files changed, 10 insertions(+)

diff --git a/gdb/testsuite/gdb.base/morestack.exp b/gdb/testsuite/gdb.base/morestack.exp
index a60a3de5a3a..b4d22187390 100644
--- a/gdb/testsuite/gdb.base/morestack.exp
+++ b/gdb/testsuite/gdb.base/morestack.exp
@@ -15,6 +15,8 @@
 
 require is_c_compiler_gcc
 
+require {expr [have_compile_flag -fsplit-stack]}
+
 standard_testfile
 
 set opts "additional_flags=-fsplit-stack"
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
index 12839a54710..6864dac3ac9 100644
--- a/gdb/testsuite/lib/gdb.exp
+++ b/gdb/testsuite/lib/gdb.exp
@@ -9408,5 +9408,13 @@ proc have_syscall { name } {
     return [gdb_can_simple_compile have_syscall_$name $src object]
 }
 
+# Return 1 if compile flag FLAG is supported.
+
+proc have_compile_flag { flag } {
+    set src { void foo () {} }
+    return [gdb_can_simple_compile have_compile_flag_$flag $src object \
+		additional_flags=$flag]
+}
+
 # Always load compatibility stuff.
 load_lib future.exp

base-commit: b3060b05134f47f6c6aba72f31746822343252ac
-- 
2.35.3


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-02-21 13:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-21 13:41 [pushed] [gdb/testsuite] Require -fsplit-stack in gdb.base/morestack.exp Tom de Vries

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).