diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-04-03 01:26:38 +0000 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-04-03 01:26:38 +0000 |
| commit | 6ed7a95c9efb2409173d2a6318924b9bfa0ae734 (patch) | |
| tree | 0a046bb7ddc60df74e25056088081674ce5c6b34 | |
| parent | aa107ca3a55fc5ed40f29c1423cee15b11099610 (diff) | |
| download | bcm5719-llvm-6ed7a95c9efb2409173d2a6318924b9bfa0ae734.tar.gz bcm5719-llvm-6ed7a95c9efb2409173d2a6318924b9bfa0ae734.zip | |
[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
| -rwxr-xr-x | lldb/utils/lldb-dotest/lldb-dotest.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/utils/lldb-dotest/lldb-dotest.in b/lldb/utils/lldb-dotest/lldb-dotest.in index 059be9384d4..18a73ae0b1e 100755 --- a/lldb/utils/lldb-dotest/lldb-dotest.in +++ b/lldb/utils/lldb-dotest/lldb-dotest.in @@ -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)) |

