tests: add 'set -x' to the .t sh scripts in run-tests.py debug mode stable
authorMads Kiilerich <mads@kiilerich.com>
Sat, 14 Jan 2012 01:55:50 +0100
branchstable
changeset 1044 23c6e5d22e79
parent 1043 93ced643068d
child 1045 0a2285b90e22
tests: add 'set -x' to the .t sh scripts in run-tests.py debug mode This makes -d output much more readable when debugging the test framework or very strange test failures. [ original upstream message ]
tests/run-tests.py
--- a/tests/run-tests.py	Thu Jan 19 02:01:05 2012 +0100
+++ b/tests/run-tests.py	Sat Jan 14 01:55:50 2012 +0100
@@ -598,6 +598,8 @@
     f.close()
 
     script = []
+    if options.debug:
+        script.append('set -x\n')
     if os.getenv('MSYSTEM'):
         script.append('alias pwd="pwd -W"\n')
     for n, l in enumerate(t):