diff options
author | Joel E. Denny <jdenny.ornl@gmail.com> | 2018-07-20 02:39:01 +0000 |
---|---|---|
committer | Joel E. Denny <jdenny.ornl@gmail.com> | 2018-07-20 02:39:01 +0000 |
commit | a47cb644c76297fb5dabd1f79b54cf1d10d0583d (patch) | |
tree | 72ab363c5436790bdd5e53459e0f647c68732cb3 | |
parent | 3bf90e7811188701cfad18f091956bea4853ec51 (diff) | |
download | bcm5719-llvm-a47cb644c76297fb5dabd1f79b54cf1d10d0583d.tar.gz bcm5719-llvm-a47cb644c76297fb5dabd1f79b54cf1d10d0583d.zip |
[libFuzzer] Use separate test directory for each config
Previously, check-all failed many tests for me. It was running the
X86_64DefaultLinuxConfig, X86_64LibcxxLinuxConfig, and
X86_64StaticLibcxxLinuxConfig configs out of
llvm-build/projects/compiler-rt/test/fuzzer. Now, it runs them out of
separate subdirectories there, and most tests pass.
Reviewed By: morehouse, george.karpenkov
Differential Revision: https://reviews.llvm.org/D49249
llvm-svn: 337521
-rw-r--r-- | compiler-rt/test/fuzzer/lit.site.cfg.in | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler-rt/test/fuzzer/lit.site.cfg.in b/compiler-rt/test/fuzzer/lit.site.cfg.in index 80560f02037..b333c78e59e 100644 --- a/compiler-rt/test/fuzzer/lit.site.cfg.in +++ b/compiler-rt/test/fuzzer/lit.site.cfg.in @@ -1,7 +1,5 @@ @LIT_SITE_CFG_IN_HEADER@ -config.test_exec_root = "@CMAKE_CURRENT_BINARY_DIR@" - config.cpp_compiler = "@LIBFUZZER_TEST_COMPILER@" config.target_flags = "@LIBFUZZER_TEST_FLAGS@" config.c_compiler = "@LIBFUZZER_TEST_COMPILER@" |