summaryrefslogtreecommitdiff
path: root/tests/scripts/variables/MAKELEVEL
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2014-10-05 16:25:56 +0000
committer <>2015-02-04 09:41:42 +0000
commit9de84c07c0648cde63bfcd2769b07faf86668e1a (patch)
tree6460e009c267f3712a693403b2dbdf161ab0941b /tests/scripts/variables/MAKELEVEL
downloadmake-tarball-9de84c07c0648cde63bfcd2769b07faf86668e1a.tar.gz
Imported from /home/lorry/working-area/delta_make-tarball/make-4.1.tar.bz2.HEADmake-4.1master
Diffstat (limited to 'tests/scripts/variables/MAKELEVEL')
-rw-r--r--tests/scripts/variables/MAKELEVEL33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/scripts/variables/MAKELEVEL b/tests/scripts/variables/MAKELEVEL
new file mode 100644
index 0000000..96a4e74
--- /dev/null
+++ b/tests/scripts/variables/MAKELEVEL
@@ -0,0 +1,33 @@
+# -*-perl-*-
+
+$description = "The following test creates a makefile to test
+makelevels in Make. It prints \$(MAKELEVEL) and then
+prints the environment variable MAKELEVEL";
+
+open(MAKEFILE,"> $makefile");
+
+# The Contents of the MAKEFILE ...
+
+print MAKEFILE <<EOF;
+all:
+\t\@echo MAKELEVEL is \$(MAKELEVEL)
+\techo \$\$MAKELEVEL
+EOF
+
+# END of Contents of MAKEFILE
+
+close(MAKEFILE);
+
+# RUN MAKE
+
+&run_make_with_options($makefile,"",&get_logfile);
+
+# SET ANSWER
+
+$answer = "MAKELEVEL is 0\necho \$MAKELEVEL\n1\n";
+
+# COMPARE RESULTS
+
+&compare_output($answer,&get_logfile(1));
+
+1;