diff options
-rwxr-xr-x | lldb/test/dosep.ty | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/test/dosep.ty b/lldb/test/dosep.ty index 9f363b8ea46..d1fb1179aa2 100755 --- a/lldb/test/dosep.ty +++ b/lldb/test/dosep.ty @@ -27,8 +27,7 @@ def walk_and_invoke(test_root, dotest_options): continue command = template % (test_root, dotest_options if dotest_options else "", name, root) - if "-v" in dotest_options: - print "Running %s" % (command) + print "Running %s" % (command) if 0 != os.system(command): failed.append(name) else: |