[compiler-rt] r337521 - [libFuzzer] Use separate test directory for each config
Joel E. Denny via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 19 19:39:01 PDT 2018
Author: jdenny
Date: Thu Jul 19 19:39:01 2018
New Revision: 337521
URL: http://llvm.org/viewvc/llvm-project?rev=337521&view=rev
Log:
[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
Modified:
compiler-rt/trunk/test/fuzzer/lit.site.cfg.in
Modified: compiler-rt/trunk/test/fuzzer/lit.site.cfg.in
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/lit.site.cfg.in?rev=337521&r1=337520&r2=337521&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/lit.site.cfg.in (original)
+++ compiler-rt/trunk/test/fuzzer/lit.site.cfg.in Thu Jul 19 19:39:01 2018
@@ -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@"
More information about the llvm-commits
mailing list