summaryrefslogtreecommitdiffstats
path: root/make/make-3.81/tests/scripts/functions/substitution
diff options
context:
space:
mode:
Diffstat (limited to 'make/make-3.81/tests/scripts/functions/substitution')
-rw-r--r--make/make-3.81/tests/scripts/functions/substitution38
1 files changed, 0 insertions, 38 deletions
diff --git a/make/make-3.81/tests/scripts/functions/substitution b/make/make-3.81/tests/scripts/functions/substitution
deleted file mode 100644
index 0d2f6a2..0000000
--- a/make/make-3.81/tests/scripts/functions/substitution
+++ /dev/null
@@ -1,38 +0,0 @@
-# -*-perl-*-
-
-$description = "Test the subst and patsubst functions";
-
-$details = "";
-
-# Generic patsubst test: test both the function and variable form.
-
-run_make_test('
-foo := a.o b.o c.o
-bar := $(foo:.o=.c)
-bar2:= $(foo:%.o=%.c)
-bar3:= $(patsubst %.c,%.o,x.c.c bar.c)
-all:;@echo $(bar); echo $(bar2); echo $(bar3)',
-'',
-'a.c b.c c.c
-a.c b.c c.c
-x.c.o bar.o');
-
-# Patsubst without '%'--shouldn't match because the whole word has to match
-# in patsubst. Based on a bug report by Markus Mauhart <qwe123@chello.at>
-
-run_make_test('all:;@echo $(patsubst Foo,Repl,FooFoo)', '', 'FooFoo');
-
-# Variable subst where a pattern matches multiple times in a single word.
-# Based on a bug report by Markus Mauhart <qwe123@chello.at>
-
-run_make_test('
-A := fooBARfooBARfoo
-all:;@echo $(A:fooBARfoo=REPL)', '', 'fooBARREPL');
-
-1;
-
-
-
-
-
-