summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gregory <andrew.gregory.8@gmail.com>2014-02-28 10:13:34 -0500
committerAllan McRae <allan@archlinux.org>2014-03-03 11:25:55 +1000
commit0475b2501ae72b25a207fd9c1af479f5f7e0e877 (patch)
treea49b9afcf4612a0b7fe6001b5a6194d404afc538
parent0b0fe51a2cb1b5d8b5031b4299547a4e5fd47c20 (diff)
downloadpacman-0475b2501ae72b25a207fd9c1af479f5f7e0e877.tar.gz
pacman-0475b2501ae72b25a207fd9c1af479f5f7e0e877.zip
pactest: add prefix to temporary directory
This makes cleaning up /tmp after several --keep-root runs much easier. Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
-rwxr-xr-xtest/pacman/pactest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pacman/pactest.py b/test/pacman/pactest.py
index fe146711..d80076e2 100755
--- a/test/pacman/pactest.py
+++ b/test/pacman/pactest.py
@@ -84,7 +84,7 @@ if __name__ == "__main__":
sys.exit(1)
# instantiate env and parser objects
- root_path = tempfile.mkdtemp()
+ root_path = tempfile.mkdtemp(prefix='pactest-')
env = pmenv.pmenv(root=root_path)
opt_parser = create_parser()
(opts, args) = opt_parser.parse_args()