summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTeresa Johnson <tejohnson@google.com>2017-11-08 20:08:15 +0000
committerTeresa Johnson <tejohnson@google.com>2017-11-08 20:08:15 +0000
commit23507b4feefd35b704481acb5dd1eff22e9696cc (patch)
tree5ecc9fe9a721ed2266c2f7773d32385a8c3a1b15 /test
parent65964b0190520f92123c3b1adb7dce481179909b (diff)
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. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@317717 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/asan/TestCases/contiguous_container_crash.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/asan/TestCases/contiguous_container_crash.cc b/test/asan/TestCases/contiguous_container_crash.cc
index fe9792888..af2102e6a 100644
--- a/test/asan/TestCases/contiguous_container_crash.cc
+++ b/test/asan/TestCases/contiguous_container_crash.cc
@@ -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>