[compiler-rt] r206593 - [asan] Reenable tests that should pass since PR19207 is fixed.
Evgeniy Stepanov
eugeni.stepanov at gmail.com
Fri Apr 18 06:24:03 PDT 2014
Author: eugenis
Date: Fri Apr 18 08:24:03 2014
New Revision: 206593
URL: http://llvm.org/viewvc/llvm-project?rev=206593&view=rev
Log:
[asan] Reenable tests that should pass since PR19207 is fixed.
Modified:
compiler-rt/trunk/lib/asan/tests/asan_test.cc
Modified: compiler-rt/trunk/lib/asan/tests/asan_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/tests/asan_test.cc?rev=206593&r1=206592&r2=206593&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/tests/asan_test.cc (original)
+++ compiler-rt/trunk/lib/asan/tests/asan_test.cc Fri Apr 18 08:24:03 2014
@@ -565,10 +565,8 @@ NOINLINE void TouchStackFunc() {
A[i] = i*i;
}
-// 3 tests below are disabled due to http://llvm.org/bugs/show_bug.cgi?id=19207
-
// Test that we handle longjmp and do not report false positives on stack.
-TEST(AddressSanitizer, DISABLED_LongJmpTest) {
+TEST(AddressSanitizer, LongJmpTest) {
static jmp_buf buf;
if (!setjmp(buf)) {
LongJmpFunc1(buf);
@@ -592,7 +590,7 @@ TEST(AddressSanitizer, BuiltinLongJmpTes
#endif // !defined(__ANDROID__) && !defined(__powerpc64__) &&
// !defined(__powerpc__)
-TEST(AddressSanitizer, DISABLED_UnderscopeLongJmpTest) {
+TEST(AddressSanitizer, UnderscopeLongJmpTest) {
static jmp_buf buf;
if (!_setjmp(buf)) {
UnderscopeLongJmpFunc1(buf);
@@ -601,7 +599,7 @@ TEST(AddressSanitizer, DISABLED_Undersco
}
}
-TEST(AddressSanitizer, DISABLED_SigLongJmpTest) {
+TEST(AddressSanitizer, SigLongJmpTest) {
static sigjmp_buf buf;
if (!sigsetjmp(buf, 1)) {
SigLongJmpFunc1(buf);
More information about the llvm-commits
mailing list