No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gmake / tests / scripts / options / dash-e
blob472270de8bbd5d2ccd4e2c088c6cc5fe4d04fc50
1 #                                                                    -*-perl-*-
3 $description = "The following test creates a makefile to ...";
5 $details = "";
7 $ENV{GOOGLE} = 'boggle';
9 open(MAKEFILE,"> $makefile");
11 print MAKEFILE <<'EOF';
12 GOOGLE = bazzle
13 all:; @echo "$(GOOGLE)"
14 EOF
16 close(MAKEFILE);
18 &run_make_with_options($makefile, '-e' ,&get_logfile);
20 $answer = "boggle\n";
22 &compare_output($answer,&get_logfile(1));