diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-05-23 23:29:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-05-24 03:42:15 +0300 |
commit | 0ae255cde4e75bfad569a0e546b6ef86b921b881 (patch) | |
tree | 92a5052724e30d811f2bb699b5d3e70a43d72cfd | |
parent | fa4ccc521e1f4b6b900df5ba9b2c2b80ae133785 (diff) | |
download | plus-0ae255cde4e75bfad569a0e546b6ef86b921b881.tar.gz plus-0ae255cde4e75bfad569a0e546b6ef86b921b881.tar.bz2 plus-0ae255cde4e75bfad569a0e546b6ef86b921b881.tar.xz plus-0ae255cde4e75bfad569a0e546b6ef86b921b881.zip |
Remove temporary home directory in runtests.sh before testing.
-rwxr-xr-x | tools/ci/scripts/runtests.sh | 2 |
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 |