public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ld/testsuite: skip bootstrap.exp when OFILES are missing
@ 2022-09-15  8:50 Clément Chigot
  2022-09-15  8:50 ` [PATCH 2/2] ld/testsuite: allow to force another directory for gcc linker Clément Chigot
  2022-09-20 16:31 ` [PATCH 1/2] ld/testsuite: skip bootstrap.exp when OFILES are missing Nick Clifton
  0 siblings, 2 replies; 4+ messages in thread
From: Clément Chigot @ 2022-09-15  8:50 UTC (permalink / raw)
  To: binutils; +Cc: Clément Chigot

OFILES are normally provided through an environment variable set by
Makefiles. However, when launching the testsuite directly through
runtest outside the build tree, it can be hard to retrieve them.
Thus, they can be missing.
Instead of letting tcl raise an error when trying to access this
OFILES variable, skip bootstrap.exp if it doesn't exist.

ld/ChangeLog:

	* testsuite/ld-bootstrap/bootstrap.exp: Skip if OFILES is
	missing
---
 ld/testsuite/ld-bootstrap/bootstrap.exp | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/ld/testsuite/ld-bootstrap/bootstrap.exp b/ld/testsuite/ld-bootstrap/bootstrap.exp
index f6d38af5d40..52a91fc554e 100644
--- a/ld/testsuite/ld-bootstrap/bootstrap.exp
+++ b/ld/testsuite/ld-bootstrap/bootstrap.exp
@@ -29,6 +29,12 @@ if ![isnative] {
     return
 }
 
+# Skip if OFILES aren't provided, it can happen when lauching
+# the testsuites outside the build directory.
+if {![info exists OFILES]} {
+    return
+}
+
 # Skip for -fprofile-generate=.
 catch "exec $nm $plug_opt $OFILES" exec_output
 send_log "foo: $exec_output"
-- 
2.25.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-09-20 16:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-15  8:50 [PATCH 1/2] ld/testsuite: skip bootstrap.exp when OFILES are missing Clément Chigot
2022-09-15  8:50 ` [PATCH 2/2] ld/testsuite: allow to force another directory for gcc linker Clément Chigot
2022-09-20 16:32   ` Nick Clifton
2022-09-20 16:31 ` [PATCH 1/2] ld/testsuite: skip bootstrap.exp when OFILES are missing Nick Clifton

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).