selftesthelpers: Fix detection of tap2subunit.
authorJelmer Vernooij <jelmer@samba.org>
Sat, 27 Oct 2012 01:31:40 +0000 (17:31 -0800)
committerJelmer Vernooij <jelmer@samba.org>
Sat, 27 Oct 2012 14:57:49 +0000 (16:57 +0200)
Autobuild-User(master): Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date(master): Sat Oct 27 16:57:49 CEST 2012 on sn-devel-104

selftest/selftesthelpers.py

index 00fa8aae7c80de72086c8d057c3daeb569ec51c6..8d36356293ebdd3a4a9ffe31c221c5f06994d62b 100644 (file)
@@ -18,6 +18,7 @@
 # three separated by newlines. All other lines in the output are considered
 # comments.
 
+import errno
 import os
 import subprocess
 import sys
@@ -68,7 +69,7 @@ python = os.getenv("PYTHON", "python")
 tap2subunit = "PYTHONPATH=%s/lib/subunit/python:%s/lib/testtools %s %s/lib/subunit/filters/tap2subunit" % (srcdir(), srcdir(), python, srcdir())
 
 sub = subprocess.Popen("tap2subunit", stdin=subprocess.PIPE,
-    stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+    stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
 sub.communicate("")
 
 if sub.returncode == 0:
@@ -210,7 +211,12 @@ def print_smbtorture4_version():
 
     :return: Whether smbtorture4 was successfully run
     """
-    sub = subprocess.Popen([smbtorture4, "-V"], stdout=sys.stderr)
+    try:
+        sub = subprocess.Popen([smbtorture4, "-V"], stdout=sys.stderr)
+    except OSError, e:
+        if e.errno == errno.ENOENT:
+            return False
+        raise
     sub.communicate("")
     return (sub.returncode == 0)