[compiler-rt] r317717 - Revert "[ThinLTO] Ensure sanitizer passes are run"

Teresa Johnson via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 8 12:08:15 PST 2017


Author: tejohnson
Date: Wed Nov  8 12:08:15 2017
New Revision: 317717

URL: http://llvm.org/viewvc/llvm-project?rev=317717&view=rev
Log:
Revert "[ThinLTO] Ensure sanitizer passes are run"

This reverts commit r317715. It failed a Windows buildbot since
ThinLTO is presumably not supported, leading to a corrupt file error
on the object file:
http://lab.llvm.org:8011/builders/sanitizer-windows/builds/19395/steps/run%20check-asan/logs/stdio

Will re-commit the new ThinLTO part of the test to a linux only test
file.

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

Modified: compiler-rt/trunk/test/asan/TestCases/contiguous_container_crash.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/contiguous_container_crash.cc?rev=317717&r1=317716&r2=317717&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/contiguous_container_crash.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/contiguous_container_crash.cc Wed Nov  8 12:08:15 2017
@@ -4,12 +4,6 @@
 // RUN: not %run %t bad-alignment 2>&1 | FileCheck --check-prefix=CHECK-BAD-ALIGNMENT %s
 // RUN: %env_asan_opts=detect_container_overflow=0 %run %t crash
 //
-// RUN: %clangxx_asan -flto=thin -O %s -o %t.thinlto
-// RUN: not %run %t.thinlto crash 2>&1 | FileCheck --check-prefix=CHECK-CRASH %s
-// RUN: not %run %t.thinlto bad-bounds 2>&1 | FileCheck --check-prefix=CHECK-BAD-BOUNDS %s
-// RUN: not %run %t.thinlto bad-alignment 2>&1 | FileCheck --check-prefix=CHECK-BAD-ALIGNMENT %s
-// RUN: %env_asan_opts=detect_container_overflow=0 %run %t.thinlto crash
-//
 // Test crash due to __sanitizer_annotate_contiguous_container.
 
 #include <assert.h>




More information about the llvm-commits mailing list