diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2014-10-05 16:25:56 +0000 |
---|---|---|
committer | <> | 2015-02-04 09:41:42 +0000 |
commit | 9de84c07c0648cde63bfcd2769b07faf86668e1a (patch) | |
tree | 6460e009c267f3712a693403b2dbdf161ab0941b /tests/scripts/functions/value | |
download | make-tarball-master.tar.gz |
Diffstat (limited to 'tests/scripts/functions/value')
-rw-r--r-- | tests/scripts/functions/value | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/scripts/functions/value b/tests/scripts/functions/value new file mode 100644 index 0000000..8e1a6f0 --- /dev/null +++ b/tests/scripts/functions/value @@ -0,0 +1,30 @@ +# -*-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; |