index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2014-04-06 19:20:55 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-05-04 16:20:11 +1000 |
commit | 00fbdabc55c1de28f65eef27cb6448608c3d4e1f (patch) | |
tree | cdb08cf299e0cf057732da65ed39e027b47cdbba | |
parent | 80d3709e65e9ee778f6a26235516b990290b49e0 (diff) |
-rwxr-xr-x | test/pacman/pactest.py | 15 |
diff --git a/test/pacman/pactest.py b/test/pacman/pactest.py index d80076e2..0e06f17d 100755 --- a/test/pacman/pactest.py +++ b/test/pacman/pactest.py @@ -18,7 +18,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -import glob from optparse import OptionParser import os import shutil @@ -100,16 +99,18 @@ if __name__ == "__main__": env.pacman["scriptlet-shell"] = opts.scriptletshell env.pacman["ldconfig"] = opts.ldconfig - opts.testcases = [] - for path in args: - opts.testcases += glob.glob(path) - if opts.testcases is None or len(opts.testcases) == 0: + if args is None or len(args) == 0: tap.bail("no tests defined, nothing to do") os.rmdir(root_path) sys.exit(2) - for i in opts.testcases: - env.addtest(i) + try: + for i in args: + env.addtest(i) + except Exception as e: + tap.bail(e) + os.rmdir(root_path) + sys.exit(2) # run tests env.run() |