diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-03-20 23:46:49 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-03-21 00:04:44 +0100 |
commit | 86a5e14b5a2f13c68aa3c39fd48f2a4c8a094170 (patch) | |
tree | 94bb7ff978b07c0899f5743ca7f976041f99e9e3 /solenv | |
parent | 013b13fd164fe9b95fab4a580b5dbff69a74dd3a (diff) |
gbuild: JUnitTest: do not remove user-dir after test runs
The user-dir is already removed before the test runs, which is more
important; it may be convenient to look at documents written by the
tests, and these end up in the user-dir.
Change-Id: I53cc1ca49c6dfc5fa3e69f55413cf3eb8676befa
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/JunitTest.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/solenv/gbuild/JunitTest.mk b/solenv/gbuild/JunitTest.mk index 99d76f73515e..12240879c1f9 100644 --- a/solenv/gbuild/JunitTest.mk +++ b/solenv/gbuild/JunitTest.mk @@ -62,8 +62,7 @@ $(call gb_JunitTest_get_target,%) : && echo " make debugrun" \ && echo " make gb_JunitTest_DEBUGRUN=T JunitTest_$*" \ && echo \ - && false)) && \ - rm -rf $(call gb_JunitTest_get_userdir,$*)) + && false))) $(CLEAN_CMD) define gb_JunitTest_JunitTest |