summaryrefslogtreecommitdiffstats
path: root/make/make-3.81/tests/scripts/functions/value
diff options
context:
space:
mode:
Diffstat (limited to 'make/make-3.81/tests/scripts/functions/value')
-rw-r--r--make/make-3.81/tests/scripts/functions/value30
1 files changed, 0 insertions, 30 deletions
diff --git a/make/make-3.81/tests/scripts/functions/value b/make/make-3.81/tests/scripts/functions/value
deleted file mode 100644
index 8e1a6f0..0000000
--- a/make/make-3.81/tests/scripts/functions/value
+++ /dev/null
@@ -1,30 +0,0 @@
-# -*-perl-*-
-
-$description = "Test the value function.";
-
-$details = "This is a test of the value function in GNU make.
-This function will evaluate to the value of the named variable with no
-further expansion performed on it.\n";
-
-open(MAKEFILE,"> $makefile");
-
-print MAKEFILE <<'EOF';
-export FOO = foo
-
-recurse = FOO = $FOO
-static := FOO = $(value FOO)
-
-all: ; @echo $(recurse) $(value recurse) $(static) $(value static)
-EOF
-
-close(MAKEFILE);
-
-&run_make_with_options($makefile, "", &get_logfile);
-
-# Create the answer to what should be produced by this Makefile
-$answer = "FOO = OO FOO = foo FOO = foo FOO = foo\n";
-
-
-&compare_output($answer,&get_logfile(1));
-
-1;