Add missing load.c file to POTFILES.in
[make.git] / tests / scripts / targets / POSIX
bloba24e3bcf6d558f66c55a2218d3c9d0daca74030f
1 #                                                                    -*-perl-*-
3 $description = "Test the behaviour of the .POSIX target.";
5 $details = "";
8 # Ensure turning on .POSIX enables the -e flag for the shell
9 # We can't assume the exit value of "false" because on different systems it's
10 # different.
12 my $script = 'false; true';
13 my $flags = '-ec';
14 my $out = `/bin/sh $flags '$script' 2>&1`;
15 my $err = $? >> 8;
16 run_make_test(qq!
17 .POSIX:
18 all: ; \@$script
20               '', "#MAKEFILE#:3: recipe for target 'all' failed
21 #MAKE#: *** [all] Error $err\n", 512);
23 # User settings must override .POSIX
24 $flags = '-xc';
25 $out = `/bin/sh $flags '$script' 2>&1`;
26 run_make_test(qq!
27 .SHELLFLAGS = $flags
28 .POSIX:
29 all: ; \@$script
31               '', $out);
33 # Test the default value of various POSIX-specific variables
34 my %POSIX = (AR => 'ar', ARFLAGS => '-rv',
35              YACC => 'yacc', YFLAGS => '',
36              LEX => 'lex', LFLAGS => '',
37              LDFLAGS => '',
38              CC => 'c99', CFLAGS => '-O',
39              FC => 'fort77', FFLAGS => '-O 1',
40              GET => 'get', GFLAGS => '',
41              SCCSFLAGS => '', SCCSGETFLAGS => '-s');
42 my $make = join('', map { "\t\@echo '$_=\$($_)'\n" } sort keys %POSIX);
43 my $r = join('', map { "$_=$POSIX{$_}\n"} sort keys %POSIX);
44 run_make_test(qq!
45 .POSIX:
46 all:
47 $make
49               '', $r);
51 # Make sure that local settings take precedence
52 %extraENV = map { $_ => "xx-$_" } keys %POSIX;
53 $r = join('', map { "$_=xx-$_\n"} sort keys %POSIX);
54 run_make_test(undef, '', $r);
56 # This tells the test driver that the perl test script executed properly.