summaryrefslogtreecommitdiff
path: root/tools/ci/scripts/runtests.sh
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-05-23 23:29:47 +0300
committerAndrei Karas <akaras@inbox.ru>2017-05-24 03:42:15 +0300
commit0ae255cde4e75bfad569a0e546b6ef86b921b881 (patch)
tree92a5052724e30d811f2bb699b5d3e70a43d72cfd /tools/ci/scripts/runtests.sh
parentfa4ccc521e1f4b6b900df5ba9b2c2b80ae133785 (diff)
downloadplus-0ae255cde4e75bfad569a0e546b6ef86b921b881.tar.gz
plus-0ae255cde4e75bfad569a0e546b6ef86b921b881.tar.bz2
plus-0ae255cde4e75bfad569a0e546b6ef86b921b881.tar.xz
plus-0ae255cde4e75bfad569a0e546b6ef86b921b881.zip
Remove temporary home directory in runtests.sh before testing.
Diffstat (limited to 'tools/ci/scripts/runtests.sh')
-rwxr-xr-xtools/ci/scripts/runtests.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/ci/scripts/runtests.sh b/tools/ci/scripts/runtests.sh
index 469bbadea..6965f1524 100755
--- a/tools/ci/scripts/runtests.sh
+++ b/tools/ci/scripts/runtests.sh
@@ -11,6 +11,7 @@ ulimit -c unlimited
rm -rf core*
export HOME="logs/home"
+rm -rf $HOME
echo "clean config runs"
n=0
@@ -33,6 +34,7 @@ echo "existing config runs"
n=0
while true; do
echo "run test ${n}"
+ rm "${HOME}/.config/mana/mana/config.xml"
./tools/ci/scripts/runtest.sh
if [ "$?" != 0 ]; then
exit 1