summaryrefslogtreecommitdiffstats
path: root/make/make-3.81/tests/scripts/functions/flavor
diff options
context:
space:
mode:
Diffstat (limited to 'make/make-3.81/tests/scripts/functions/flavor')
-rw-r--r--make/make-3.81/tests/scripts/functions/flavor44
1 files changed, 0 insertions, 44 deletions
diff --git a/make/make-3.81/tests/scripts/functions/flavor b/make/make-3.81/tests/scripts/functions/flavor
deleted file mode 100644
index 80d6be7..0000000
--- a/make/make-3.81/tests/scripts/functions/flavor
+++ /dev/null
@@ -1,44 +0,0 @@
-# -*-perl-*-
-$description = "Test the flavor function.";
-
-$details = "";
-
-
-# Test #1: Test general logic.
-#
-run_make_test('
-s := s
-r = r
-
-$(info u $(flavor u))
-$(info s $(flavor s))
-$(info r $(flavor r))
-
-ra += ra
-rc ?= rc
-
-$(info ra $(flavor ra))
-$(info rc $(flavor rc))
-
-s += s
-r += r
-
-$(info s $(flavor s))
-$(info r $(flavor r))
-
-
-.PHONY: all
-all:;@:
-',
-'',
-'u undefined
-s simple
-r recursive
-ra recursive
-rc recursive
-s simple
-r recursive');
-
-
-# This tells the test driver that the perl test script executed properly.
-1;