VirtualBox

source: kBuild/trunk/src/kmk/tests/scripts/variables/SHELL@ 3140

Last change on this file since 3140 was 3140, checked in by bird, 7 years ago

kmk: Merged in changes from GNU make 4.2.1 (2e55f5e4abdc0e38c1d64be703b446695e70b3b6 / https://git.savannah.gnu.org/git/make.git).

  • Property svn:eol-style set to LF
File size: 2.9 KB
Line 
1# -*-perl-*-
2
3$description = "Test proper handling of SHELL.";
4
5# Find the default value when SHELL is not set. On UNIX it will be /bin/sh,
6# but on other platforms who knows?
7resetENV();
8delete $ENV{SHELL};
9$mshell = `echo 'all:;\@echo \$(SHELL)' | $make_path -f-`;
10chop $mshell;
11
12# According to POSIX, the value of SHELL in the environment has no impact on
13# the value in the makefile.
14# Note %extraENV takes precedence over the default value for the shell.
15
16$extraENV{SHELL} = '/dev/null';
17run_make_test('all:;@echo "$(SHELL)"', '', $mshell);
18
19# According to POSIX, any value of SHELL set in the makefile should _NOT_ be
20# exported to the subshell! I wanted to set SHELL to be $^X (perl) in the
21# makefile, but make runs $(SHELL) -c 'commandline' and that doesn't work at
22# all when $(SHELL) is perl :-/. So, we just add an extra initial /./ which
23# works well on UNIX and seems to work OK on at least some non-UNIX systems.
24
25$extraENV{SHELL} = $mshell;
26
27run_make_test("SHELL := /./$mshell\n".'
28all:;@echo "$(SHELL) $$SHELL"
29', '', "/./$mshell $mshell");
30
31# As a GNU make extension, if make's SHELL variable is explicitly exported,
32# then we really _DO_ export it.
33
34$extraENV{SHELL} = $mshell;
35
36run_make_test("export SHELL := /./$mshell\n".'
37all:;@echo "$(SHELL) $$SHELL"
38', '', "/./$mshell /./$mshell");
39
40
41# Test out setting of SHELL, both exported and not, as a target-specific
42# variable.
43
44$extraENV{SHELL} = $mshell;
45
46run_make_test("all: SHELL := /./$mshell\n".'
47all:;@echo "$(SHELL) $$SHELL"
48', '', "/./$mshell $mshell");
49
50$extraENV{SHELL} = $mshell;
51
52# bird: This was wrong at some point, see Savannah bug #24655. Was first fixed in kBuild.
53run_make_test("
54SHELL := /././$mshell
55one: two
56two: export SHELL := /./$mshell\n".'
57one two:;@echo "$@: $(SHELL) $$SHELL"
58', '', "two: /./$mshell /./$mshell\none: /././$mshell $mshell\n");
59
60# Test .SHELLFLAGS
61
62# We don't know the output here: on Solaris for example, every line printed
63# by the shell in -x mode has a trailing space (!!)
64my $script = 'true; true';
65my $flags = '-xc';
66my $out = `/bin/sh $flags '$script' 2>&1`;
67
68run_make_test(qq!
69.SHELLFLAGS = $flags
70all: ; \@$script
71!,
72 '', $out);
73
74# Do it again but add spaces to SHELLFLAGS
75
76# Some shells (*shakes fist at Solaris*) cannot handle multiple flags in
77# separate arguments.
78my $t = `/bin/sh -e -c true 2>/dev/null`;
79my $multi_ok = $? == 0;
80
81if ($multi_ok) {
82 $flags = '-x -c';
83 run_make_test(qq!
84.SHELLFLAGS = $flags
85all: ; \@$script
86!,
87 '', $out);
88}
89
90# We can't just use "false" because on different systems it provides a
91# different exit code--once again Solaris: false exits with 255 not 1
92$script = 'true; false; true';
93$flags = '-xec';
94$out = `/bin/sh $flags '$script' 2>&1`;
95my $err = $? >> 8;
96
97run_make_test(qq!
98.SHELLFLAGS = $flags
99all: ; \@$script
100!,
101 '', "$out#MAKE#: *** [#MAKEFILE#:3: all] Error $err\n", 512);
102
1031;
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette