summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2012-06-25 01:02:15 +0200
committerJay Berkenbilt <ejb@ql.org>2012-06-25 01:05:25 +0200
commit0e1caa502d87d21b4667045d90be00f59a428276 (patch)
tree33f8e011505cc55bd49873c222bbeec0eddc85c5 /Makefile
parent5c8d5b1a6cf6202925a5915c8b5a256a3578fa6c (diff)
downloadqpdf-0e1caa502d87d21b4667045d90be00f59a428276.tar.zst
Cosmetic fix to Makefile for showing test output
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 571f3e2e..bcc40c17 100644
--- a/Makefile
+++ b/Makefile
@@ -127,9 +127,9 @@ $(TEST_TARGETS):
if TC_SRCS="$(foreach T,$(TC_SRCS_$(subst check_,,$@)),../../$(T))" \
$(QTEST) -bindirs .:.. -datadir ../qtest -covdir ..; then \
true; \
- elif test "$(SHOW_FAILED_TEST_OUTPUT)" = "1"; then \
- cat -v qtest.log; \
- false; \
else \
+ if test "$(SHOW_FAILED_TEST_OUTPUT)" = "1"; then \
+ cat -v qtest.log; \
+ fi; \
false; \
fi)