mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-28 15:57:48 +00:00
7fbd58cd6b
This reverts commit 6264deece3
.
Further investigation discovers that the real issue is that
GNU Emacs compile mode doesn't have a matching regex for GNU
make error messages generated when targets fail. I submitted
a patch to GNU Emacs adding a matcher for compile mode.
22 lines
562 B
Perl
22 lines
562 B
Perl
#! -*-perl-*-
|
|
|
|
$description = "Test the behaviour of the .DELETE_ON_ERROR target.";
|
|
|
|
$details = "";
|
|
|
|
run_make_test('
|
|
.DELETE_ON_ERROR:
|
|
all: ; exit 1 > $@
|
|
',
|
|
'', "exit 1 > all\n#MAKE#: *** [#MAKEFILE#:3: all] Error 1\n#MAKE#: *** Deleting file 'all'", 512);
|
|
|
|
run_make_test('
|
|
.DELETE_ON_ERROR:
|
|
all: foo.x ;
|
|
%.x : %.q ; echo > $@
|
|
%.q : ; exit 1 > $@
|
|
',
|
|
'', "exit 1 > foo.q\n#MAKE#: *** [#MAKEFILE#:5: foo.q] Error 1\n#MAKE#: *** Deleting file 'foo.q'", 512);
|
|
|
|
# This tells the test driver that the perl test script executed properly.
|
|
1;
|