diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-06-02T11·20+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-06-02T11·20+0200 |
commit | 90aec21d76a2efae33d4b995ab772251a5778e1a (patch) | |
tree | 255909d2cea0e13805263456c137219d2733ac7e /tests | |
parent | 898703e006ade301ea6be0704c54b82b24c5112b (diff) |
Fix tarball test
The tarball cache is stored in $HOME, so the test should set up its own $HOME.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tarball.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/tarball.sh b/tests/tarball.sh index 6d02544cfae3..cb5258a9e548 100644 --- a/tests/tarball.sh +++ b/tests/tarball.sh @@ -2,6 +2,9 @@ source common.sh clearStore +export HOME=$TEST_ROOT/home +rm -rf $TEST_ROOT/home + tarroot=$TEST_ROOT/tarball rm -rf $tarroot mkdir -p $tarroot |