generated from gnu-ci-templates/ci-check
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a03d38a
commit 6ded701
Showing
3 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
From 428fd67d60f6d67264d24dc927acef2370db405e Mon Sep 17 00:00:00 2001 | ||
From: Ileana Dumitrescu <ileanadumitrescu95@gmail.com> | ||
Date: Tue, 1 Oct 2024 21:43:05 +0300 | ||
Subject: [PATCH] tests: append missing PATH | ||
|
||
--- | ||
tests/f77demo.at | 5 +++++ | ||
1 file changed, 5 insertions(+) | ||
|
||
diff --git a/tests/f77demo.at b/tests/f77demo.at | ||
index 6b96920a..e26251c4 100644 | ||
--- a/tests/f77demo.at | ||
+++ b/tests/f77demo.at | ||
@@ -292,6 +292,10 @@ AT_CHECK([$GREP 'Welcome to GNU libtool mixed C/Fortran demo!' stdout], | ||
|
||
AT_SETUP([static library]) | ||
|
||
+save_PATH=$PATH | ||
+PATH=$PATH:/Library/Frameworks/Mono.framework/Versions/Current/Commands | ||
+export PATH | ||
+ | ||
# Using clang with fsanitize results in an incompatible ASan runtime. | ||
# It results in the warning message "linked against incompatible ASan | ||
# runtimes". This only occurs with the mixed Fortran/C demo. | ||
@@ -309,6 +313,7 @@ LT_AT_CHECK_CONFIG([--disable-shared], | ||
[^build_old_libs=yes], [^build_libtool_libs=no]) | ||
_LT_CHECK_EXECUTE | ||
|
||
+PATH=$save_PATH | ||
AT_CLEANUP | ||
|
||
|
||
-- | ||
2.45.2 | ||
|