No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gmake / tests / scripts / misc / general3
blob2421ed4e862f6b217b1b9fb89372c1b71393e801
1 #                                                                    -*-perl-*-
3 $description = "\
4 This tests random features of the parser that need to be supported, and
5 which have either broken at some point in the past or seem likely to
6 break.";
8 $makefile2 = &get_tmpfile;
10 open(MAKEFILE,"> $makefile");
12 # The contents of the Makefile ...
14 print MAKEFILE <<EOF;
15 # We want to allow both empty commands _and_ commands that resolve to empty.
16 EMPTY =
18 .PHONY: all a1 a2 a3 a4
19 all: a1 a2 a3 a4
21 a1:;
22 a2:
24 a3:;\$(EMPTY)
25 a4:
26 \t\$(EMPTY)
28 \# Non-empty lines that expand to nothing should also be ignored.
29 STR =     \# Some spaces
30 TAB =   \t  \# A TAB and some spaces
32 \$(STR)
34 \$(STR) \$(TAB)
36 EOF
38 close(MAKEFILE);
40 &run_make_with_options($makefile,"",&get_logfile);
41 $answer = "$make_name: Nothing to be done for `all'.\n";
42 &compare_output($answer,&get_logfile(1));
45 # TEST 2
47 # Make sure files without trailing newlines are handled properly.
49 open(MAKEFILE, "> $makefile2");
50 print MAKEFILE "all:;\@echo FOO = \$(FOO)\nFOO = foo";
51 close(MAKEFILE);
53 &run_make_with_options($makefile2,"",&get_logfile);
54 $answer = "FOO = foo\n";
55 &compare_output($answer,&get_logfile(1));