diff options
author | Joachim Protze <protze@itc.rwth-aachen.de> | 2019-01-16 13:06:10 +0000 |
---|---|---|
committer | Joachim Protze <protze@itc.rwth-aachen.de> | 2019-01-16 13:06:10 +0000 |
commit | c46bd682ac9fcef4bf5f3cffbcd349b8ecde3bc5 (patch) | |
tree | 71b011324beb276da9c2eb064afc92cf53aba92e | |
parent | 2a32a69c53ba4e4e458a4bdd9cc5060d8a91ac85 (diff) | |
download | bcm5719-llvm-c46bd682ac9fcef4bf5f3cffbcd349b8ecde3bc5.tar.gz bcm5719-llvm-c46bd682ac9fcef4bf5f3cffbcd349b8ecde3bc5.zip |
[OpenMP] Output written by tests should go to build directory
llvm-svn: 351332
-rw-r--r-- | openmp/runtime/test/lit.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/runtime/test/lit.cfg b/openmp/runtime/test/lit.cfg index 3c6b57d8ed9..1d050c459d8 100644 --- a/openmp/runtime/test/lit.cfg +++ b/openmp/runtime/test/lit.cfg @@ -127,7 +127,7 @@ config.substitutions.append(("%flags", config.test_flags)) config.substitutions.append(("%python", '"%s"' % (sys.executable))) if config.has_ompt: - config.substitutions.append(("FileCheck", "tee %%s.out | %s" % config.test_filecheck)) + config.substitutions.append(("FileCheck", "tee %%t.out | %s" % config.test_filecheck)) config.substitutions.append(("%sort-threads", "sort -n -s")) if config.operating_system == 'Windows': # No such environment variable on Windows. |