index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2014-07-04 17:02:06 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-08-03 18:46:31 +1000 |
commit | 73717f89df6ebf3c03f00a70ca2728c04cebe7a0 (patch) | |
tree | abc2bfdccc4d492d1f74045a4fb2f3f469b76e9e | |
parent | 6650c43fcafd144c78349aca9eb80c0ae3886a9d (diff) |
-rwxr-xr-x | test/pacman/pactest.py | 9 |
diff --git a/test/pacman/pactest.py b/test/pacman/pactest.py index cba439c3..58c14f6d 100755 --- a/test/pacman/pactest.py +++ b/test/pacman/pactest.py @@ -90,6 +90,10 @@ if __name__ == "__main__": tap.bail("cannot locate pacman binary") sys.exit(2) + if args is None or len(args) == 0: + tap.bail("no tests defined, nothing to do") + sys.exit(2) + # instantiate env root_path = tempfile.mkdtemp(prefix='pactest-') env = pmenv.pmenv(root=root_path) @@ -105,11 +109,6 @@ if __name__ == "__main__": env.pacman["scriptlet-shell"] = opts.scriptletshell env.pacman["ldconfig"] = opts.ldconfig - if args is None or len(args) == 0: - tap.bail("no tests defined, nothing to do") - os.rmdir(root_path) - sys.exit(2) - try: for i in args: env.addtest(i) |