version, based off of 3.74, seems to have problems with NSPR autoconf. r=cls. git-svn-id: svn://10.0.0.236/trunk@85225 18797224-902f-48f8-a5cc-f745e15eee43
25 lines
430 B
Perl
25 lines
430 B
Perl
# -*-perl-*-
|
|
|
|
$description = "The following test creates a makefile to ...";
|
|
|
|
$details = "";
|
|
|
|
$ENV{GOOGLE} = 'boggle';
|
|
|
|
open(MAKEFILE,"> $makefile");
|
|
|
|
print MAKEFILE <<'EOF';
|
|
GOOGLE = bazzle
|
|
all:; @echo "$(GOOGLE)"
|
|
EOF
|
|
|
|
close(MAKEFILE);
|
|
|
|
&run_make_with_options($makefile, '-e' ,&get_logfile);
|
|
|
|
$answer = "boggle\n";
|
|
|
|
&compare_output($answer,&get_logfile(1));
|
|
|
|
1;
|