diff options
author | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2013-07-17 16:29:55 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-07-18 00:05:09 -0400 |
commit | c2654883624885696edccd2a202873998ec208f1 (patch) | |
tree | 228aa798ac382a0842c0ee5d40e9ad7d013d3d15 /Makefile.am | |
parent | 059b7a9aad6c2e60957761b8f63267861c859be8 (diff) |
test: Keep the test-suite.log around in case of a test failure
The addition of .DELETE_ON_ERROR will lead to the removal of the
test-suite.log in case of a test failure. Mark the rule as PRECIOUS
to keep that file around.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 7e6361c2e8..c4b9b1ad2f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,6 +31,9 @@ SUBDIRS = . po # keep intermediate files .SECONDARY: +# Keep the test-suite.log +.PRECIOUS: $(TEST_SUITE_LOG) + LIBUDEV_CURRENT=4 LIBUDEV_REVISION=6 LIBUDEV_AGE=3 |