diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2013-11-22 18:00:07 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2013-11-22 18:00:07 +0100 |
commit | 3176c11305be4f930159b8404c188cb5d29ecf75 (patch) | |
tree | 918ea6e557a03fa01d154d96f99b3946ab0960ee /solenv/gbuild | |
parent | e001743ad0f5a166a7e605acd76031100e6e0a40 (diff) |
always cat cppunit test log on failure
and not only when gdb is installed / the postprocess script succeeds
Change-Id: I36e2fcdb81296252d7402d77154e45614cb70038
Diffstat (limited to 'solenv/gbuild')
-rw-r--r-- | solenv/gbuild/CppunitTest.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/CppunitTest.mk b/solenv/gbuild/CppunitTest.mk index 7ebfc07c26f5..f3c084737121 100644 --- a/solenv/gbuild/CppunitTest.mk +++ b/solenv/gbuild/CppunitTest.mk @@ -94,7 +94,7 @@ $(call gb_CppunitTest_get_target,%) :| $(gb_CppunitTest_CPPTESTDEPS) || (RET=$$? \ $(if $(value gb_CppunitTest_postprocess), \ && $(call gb_CppunitTest_postprocess,$(gb_CppunitTest_CPPTESTCOMMAND),$@.core,$$RET) >> $@.log 2>&1) \ - && cat $@.log && $(call gb_UNIT_FAILED_MSG,Cppunit,$*) \ + ; cat $@.log && $(call gb_UNIT_FAILED_MSG,Cppunit,$*) \ && false)))) define gb_CppunitTest_CppunitTest |