[compiler-rt] r230505 - Fix duplicate test code introduced by running "patch -p0" twice

Timur Iskhodzhanov timurrrr at google.com
Wed Feb 25 09:01:09 PST 2015


Author: timurrrr
Date: Wed Feb 25 11:01:09 2015
New Revision: 230505

URL: http://llvm.org/viewvc/llvm-project?rev=230505&view=rev
Log:
Fix duplicate test code introduced by running "patch -p0" twice

Sorry, SVN had some weird problems so I had to revert and reapply the patch
locally a couple of times and didn't notice I've added file contents to the same
file....

Modified:
    compiler-rt/trunk/test/asan/TestCases/Linux/asan_default_suppressions.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Linux/asan_default_suppressions.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Linux/asan_default_suppressions.cc?rev=230505&r1=230504&r2=230505&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Linux/asan_default_suppressions.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Linux/asan_default_suppressions.cc Wed Feb 25 11:01:09 2015
@@ -5,10 +5,3 @@ extern "C" {
 }
 // CHECK: AddressSanitizer: failed to parse suppressions
 int main() {}
-// Test that we use the suppressions from __asan_default_suppressions.
-// RUN: %clangxx_asan %s -o %t && not %run %t 2>&1 | FileCheck %s
-extern "C" {
-  const char *__asan_default_suppressions() { return "FooBar"; }
-}
-// CHECK: AddressSanitizer: failed to parse suppressions
-int main() {}





More information about the llvm-commits mailing list