2000-03-28 04:53:50 +08:00
|
|
|
# -*-perl-*-
|
|
|
|
$description = "Test handling of static pattern rules.";
|
1999-09-14 10:03:19 +08:00
|
|
|
|
2000-03-28 04:53:50 +08:00
|
|
|
$details = "\
|
|
|
|
The makefile created in this test has three targets. The
|
|
|
|
filter command is used to get those target names ending in
|
|
|
|
.o and statically creates a compile command with the target
|
|
|
|
name and the target name with .c. It also does the same thing
|
|
|
|
for another target filtered with .elc and creates a command
|
|
|
|
to emacs a .el file";
|
1999-09-14 10:03:19 +08:00
|
|
|
|
2000-03-28 04:53:50 +08:00
|
|
|
&touch('bar.c', 'lose.c');
|
1999-09-14 10:03:19 +08:00
|
|
|
|
2005-10-24 21:01:39 +08:00
|
|
|
# TEST #0
|
1999-09-14 10:03:19 +08:00
|
|
|
# -------
|
|
|
|
|
2005-10-24 21:01:39 +08:00
|
|
|
run_make_test('
|
|
|
|
files = foo.elc bar.o lose.o
|
|
|
|
|
|
|
|
$(filter %.o,$(files)): %.o: %.c ; @echo CC -c $(CFLAGS) $< -o $@
|
1999-09-14 10:03:19 +08:00
|
|
|
|
2005-10-24 21:01:39 +08:00
|
|
|
$(filter %.elc,$(files)): %.elc: %.el ; @echo emacs $<
|
|
|
|
',
|
|
|
|
'',
|
|
|
|
'CC -c bar.c -o bar.o');
|
1999-09-14 10:03:19 +08:00
|
|
|
|
2005-10-24 21:01:39 +08:00
|
|
|
# TEST #1
|
1999-09-14 10:03:19 +08:00
|
|
|
# -------
|
|
|
|
|
2005-10-24 21:01:39 +08:00
|
|
|
run_make_test(undef, 'lose.o', 'CC -c lose.c -o lose.o');
|
1999-09-14 10:03:19 +08:00
|
|
|
|
|
|
|
|
2005-10-24 21:01:39 +08:00
|
|
|
# TEST #2
|
1999-09-14 10:03:19 +08:00
|
|
|
# -------
|
|
|
|
&touch("foo.el");
|
|
|
|
|
2005-10-24 21:01:39 +08:00
|
|
|
run_make_test(undef, 'foo.elc', 'emacs foo.el');
|
2000-03-28 04:53:50 +08:00
|
|
|
|
2005-10-24 21:01:39 +08:00
|
|
|
# Clean up after the first tests.
|
2000-03-28 04:53:50 +08:00
|
|
|
unlink('foo.el', 'bar.c', 'lose.c');
|
1999-09-14 10:03:19 +08:00
|
|
|
|
|
|
|
|
2005-10-24 21:01:39 +08:00
|
|
|
# TEST #3 -- PR/1670: don't core dump on invalid static pattern rules
|
2000-03-28 04:53:50 +08:00
|
|
|
# -------
|
|
|
|
|
2005-10-24 21:01:39 +08:00
|
|
|
run_make_test('
|
|
|
|
.DEFAULT: ; @echo $@
|
|
|
|
foo: foo%: % %.x % % % y.% % ; @echo $@
|
|
|
|
',
|
|
|
|
'', ".x\ny.\nfoo");
|
1999-09-14 10:03:19 +08:00
|
|
|
|
|
|
|
|
2005-10-24 21:01:39 +08:00
|
|
|
# TEST #4 -- bug #12180: core dump on a stat pattern rule with an empty
|
2005-03-01 16:01:05 +08:00
|
|
|
# prerequisite list.
|
|
|
|
run_make_test('
|
|
|
|
foo.x bar.x: %.x : ; @echo $@
|
1999-09-14 10:03:19 +08:00
|
|
|
|
2005-03-01 16:01:05 +08:00
|
|
|
',
|
2005-10-24 21:01:39 +08:00
|
|
|
'', 'foo.x');
|
1999-09-14 10:03:19 +08:00
|
|
|
|
2005-08-10 18:21:13 +08:00
|
|
|
|
2005-10-24 21:01:39 +08:00
|
|
|
# TEST #5 -- bug #13881: double colon static pattern rule does not
|
2005-08-10 18:21:13 +08:00
|
|
|
# substitute %.
|
|
|
|
run_make_test('
|
|
|
|
foo.bar:: %.bar: %.baz
|
|
|
|
foo.baz: ;@:
|
|
|
|
',
|
2005-10-24 21:01:39 +08:00
|
|
|
'', '');
|
2005-08-10 18:21:13 +08:00
|
|
|
|
2005-03-01 16:01:05 +08:00
|
|
|
1;
|