diff options
author | Pavel Labath <pavel@labath.sk> | 2019-08-30 11:02:58 +0000 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2019-08-30 11:02:58 +0000 |
commit | 9bad66393bf8e3cd8e7acd7a8b2ea37e67e00d3c (patch) | |
tree | 6568463db6a5ad27cd2310ffe0f547e7ade09ce5 /lldb/packages/Python/lldbsuite/test | |
parent | e3e83d708ab6f933862b9537db42eb0e9454be26 (diff) | |
download | bcm5719-llvm-9bad66393bf8e3cd8e7acd7a8b2ea37e67e00d3c.tar.gz bcm5719-llvm-9bad66393bf8e3cd8e7acd7a8b2ea37e67e00d3c.zip |
[dotest] Finish removing -q
One usage of this option remained, and caused dotest to error out if one
happened to pass the -v flag.
llvm-svn: 370462
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index e8974a453c1..04917185de2 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -243,7 +243,7 @@ def parseOptionsAndInitTestdirs(): lldbtest_config.inferior_env = ' '.join(args.set_inferior_env_vars) # Only print the args if being verbose. - if args.v and not args.q: + if args.v: print(get_dotest_invocation()) if args.h: |