summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2009-06-06 23:16:46 +0000
committerPaul Smith <psmith@gnu.org>2009-06-06 23:16:46 +0000
commitb9f831b858761366e0db418e6f226a053ed550af (patch)
treec1136963019da597c69848df352510c752a6d4ea /tests
parent71385e12250ea56ddb2186f22a3f741684562ac5 (diff)
downloadgunmake-b9f831b858761366e0db418e6f226a053ed550af.tar.gz
- Work around a bug in glibc glob(3), by avoiding GLOB_NOCHECK.
- Fix issue in very parallel builds found building glibc.
Diffstat (limited to 'tests')
-rw-r--r--tests/scripts/variables/SHELL9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/scripts/variables/SHELL b/tests/scripts/variables/SHELL
index acc5903..a303540 100644
--- a/tests/scripts/variables/SHELL
+++ b/tests/scripts/variables/SHELL
@@ -49,8 +49,11 @@ all:;@echo "$(SHELL) $$SHELL"
$extraENV{SHELL} = $mshell;
-run_make_test("all: export SHELL := /./$mshell\n".'
-all:;@echo "$(SHELL) $$SHELL"
-', '', "/./$mshell /./$mshell");
+run_make_test("
+SHELL := /././$mshell
+one: two
+two: export SHELL := /./$mshell\n".'
+one two:;@echo "$@: $(SHELL) $$SHELL"
+', '', "two: /./$mshell /./$mshell\none: /././$mshell $mshell\n");
1;