tests: make hghave and run-tests exit on unknown feature requirements
authorMads Kiilerich <mads@kiilerich.com>
Mon, 07 Jan 2013 02:00:43 +0100
changeset 18229 77d06793a20d
parent 18228 1528ff6ac7ee
child 18230 f5842787a958
tests: make hghave and run-tests exit on unknown feature requirements
tests/hghave
tests/run-tests.py
--- a/tests/hghave	Mon Jan 07 02:00:43 2013 +0100
+++ b/tests/hghave	Mon Jan 07 02:00:43 2013 +0100
@@ -59,7 +59,7 @@
 
         if feature not in checks:
             error('skipped: unknown feature: ' + feature)
-            continue
+            sys.exit(2)
 
         check, desc = checks[feature]
         try:
--- a/tests/run-tests.py	Mon Jan 07 02:00:43 2013 +0100
+++ b/tests/run-tests.py	Mon Jan 07 02:00:43 2013 +0100
@@ -602,10 +602,13 @@
         tdir = TESTDIR.replace('\\', '/')
         proc = Popen4('%s -c "%s/hghave %s"' %
                       (options.shell, tdir, ' '.join(reqs)), wd, 0)
-        proc.communicate()
+        stdout, stderr = proc.communicate()
         ret = proc.wait()
         if wifexited(ret):
             ret = os.WEXITSTATUS(ret)
+        if ret == 2:
+            print stdout
+            sys.exit(1)
         return ret == 0
 
     f = open(test)