r301216 - Remove erroneous driver test for -fsanitize=fuzzer flag

George Karpenkov via cfe-commits cfe-commits at lists.llvm.org
Mon Apr 24 11:36:32 PDT 2017


Author: george.karpenkov
Date: Mon Apr 24 13:36:31 2017
New Revision: 301216

URL: http://llvm.org/viewvc/llvm-project?rev=301216&view=rev
Log:
Remove erroneous driver test for -fsanitize=fuzzer flag

libfuzzer is not available on all platforms, and hence we can not always
rely that it was compiled.

Modified:
    cfe/trunk/test/Driver/fuzzer.c

Modified: cfe/trunk/test/Driver/fuzzer.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/fuzzer.c?rev=301216&r1=301215&r2=301216&view=diff
==============================================================================
--- cfe/trunk/test/Driver/fuzzer.c (original)
+++ cfe/trunk/test/Driver/fuzzer.c Mon Apr 24 13:36:31 2017
@@ -15,8 +15,6 @@
 //
 // CHECK-LIBCXX-DARWIN: -lc++
 
-// RUN: %clang -fsanitize=fuzzer %s
-
 int LLVMFuzzerTestOneInput(const char *Data, long Size) {
   return 0;
 }




More information about the cfe-commits mailing list