Fix failed test command repro printing for *.pass.cpp tests
Before we were printing out the compile command twice, which isn't that useful. Thanks EricWF for the report! git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@232526 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -125,8 +125,8 @@ class LibcxxTestFormat(object):
|
||||
# should add a `// FILE-DEP: foo.dat` to each test to track this.
|
||||
data_files = [os.path.join(local_cwd, f)
|
||||
for f in os.listdir(local_cwd) if f.endswith('.dat')]
|
||||
out, err, rc = self.executor.run(exec_path, [exec_path],
|
||||
local_cwd, data_files, env)
|
||||
cmd, out, err, rc = self.executor.run(exec_path, [exec_path],
|
||||
local_cwd, data_files, env)
|
||||
if rc != 0:
|
||||
report = libcxx.util.makeReport(cmd, out, err, rc)
|
||||
report = "Compiled With: %s\n%s" % (compile_cmd, report)
|
||||
|
||||
Reference in New Issue
Block a user