Skip to content
Snippets Groups Projects
Commit 4bc35496 authored by kiilerix's avatar kiilerix
Browse files

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.
parent f57f891e
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment