mirror of
https://github.com/mirror/make.git
synced 2025-01-29 05:40:52 +08:00
23 lines
624 B
Plaintext
23 lines
624 B
Plaintext
|
#! -*-perl-*-
|
||
|
|
||
|
$description = "Test the behaviour of the .DELETE_ON_ERROR target.";
|
||
|
|
||
|
$details = "";
|
||
|
|
||
|
run_make_test('
|
||
|
.DELETE_ON_ERROR:
|
||
|
all: ; false > $@
|
||
|
',
|
||
|
'', "false > all\n#MAKEFILE#:3: recipe for target 'all' failed\n#MAKE#: *** [all] Error 1\n#MAKE#: *** Deleting file 'all'", 512);
|
||
|
|
||
|
run_make_test('
|
||
|
.DELETE_ON_ERROR:
|
||
|
all: foo.x ;
|
||
|
%.x : %.q ; echo > $@
|
||
|
%.q : ; false > $@
|
||
|
',
|
||
|
'', "false > foo.q\n#MAKEFILE#:5: recipe for target 'foo.q' failed\n#MAKE#: *** [foo.q] Error 1\n#MAKE#: *** Deleting file 'foo.q'", 512);
|
||
|
|
||
|
# This tells the test driver that the perl test script executed properly.
|
||
|
1;
|