[lldb-dotest] Print dotest.py invocation.

In order to debug a failing python test, you need to debug Python
instead of the wrapper. For a while I've been adding and removing this,
but I think it could be useful for everyone.

llvm-svn: 357554
This commit is contained in:
Jonas Devlieghere
2019-04-03 01:26:38 +00:00
parent aa107ca3a5
commit 6ed7a95c9e

View File

@@ -13,4 +13,5 @@ if __name__ == '__main__':
cmd.extend(dotest_args)
cmd.extend(wrapper_args)
# Invoke dotest.py and return exit code.
print(' '.join(cmd))
sys.exit(subprocess.call(cmd))