[compiler-rt] r182363 - [ASan] Don't run fast unwinder tests on 32-bit Linux as fast unwinder may be unexpectedly smart on some hosts

Alexey Samsonov samsonov at google.com
Tue May 21 02:35:48 PDT 2013


Author: samsonov
Date: Tue May 21 04:35:48 2013
New Revision: 182363

URL: http://llvm.org/viewvc/llvm-project?rev=182363&view=rev
Log:
[ASan] Don't run fast unwinder tests on 32-bit Linux as fast unwinder may be unexpectedly smart on some hosts

Modified:
    compiler-rt/trunk/lib/asan/lit_tests/Linux/malloc-in-qsort.cc
    compiler-rt/trunk/lib/asan/lit_tests/Linux/overflow-in-qsort.cc

Modified: compiler-rt/trunk/lib/asan/lit_tests/Linux/malloc-in-qsort.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/lit_tests/Linux/malloc-in-qsort.cc?rev=182363&r1=182362&r2=182363&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/lit_tests/Linux/malloc-in-qsort.cc (original)
+++ compiler-rt/trunk/lib/asan/lit_tests/Linux/malloc-in-qsort.cc Tue May 21 04:35:48 2013
@@ -1,6 +1,3 @@
-// RUN: %clangxx_asan -m32 -O2 %s -o %t
-// RUN: ASAN_OPTIONS=fast_unwind_on_malloc=1 %t 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK-FAST
-// RUN: ASAN_OPTIONS=fast_unwind_on_malloc=0 %t 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK-SLOW
 // RUN: %clangxx_asan -m64 -O2 %s -o %t
 // RUN: ASAN_OPTIONS=fast_unwind_on_malloc=1 %t 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK-FAST
 // RUN: ASAN_OPTIONS=fast_unwind_on_malloc=0 %t 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK-SLOW
@@ -10,7 +7,7 @@
 // https://code.google.com/p/address-sanitizer/issues/detail?id=137
 
 // Fast unwinder is only avaliable on x86_64 and i386.
-// REQUIRES: x86_64-supported-target,i386-supported-target
+// REQUIRES: x86_64-supported-target
 
 #include <stdlib.h>
 #include <stdio.h>

Modified: compiler-rt/trunk/lib/asan/lit_tests/Linux/overflow-in-qsort.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/lit_tests/Linux/overflow-in-qsort.cc?rev=182363&r1=182362&r2=182363&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/lit_tests/Linux/overflow-in-qsort.cc (original)
+++ compiler-rt/trunk/lib/asan/lit_tests/Linux/overflow-in-qsort.cc Tue May 21 04:35:48 2013
@@ -1,6 +1,3 @@
-// RUN: %clangxx_asan -m32 -O2 %s -o %t
-// RUN: ASAN_OPTIONS=fast_unwind_on_fatal=1 %t 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK-FAST
-// RUN: ASAN_OPTIONS=fast_unwind_on_fatal=0 %t 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK-SLOW
 // RUN: %clangxx_asan -m64 -O2 %s -o %t
 // RUN: ASAN_OPTIONS=fast_unwind_on_fatal=1 %t 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK-FAST
 // RUN: ASAN_OPTIONS=fast_unwind_on_fatal=0 %t 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK-SLOW
@@ -10,7 +7,7 @@
 // https://code.google.com/p/address-sanitizer/issues/detail?id=137
 
 // Fast unwinder is only avaliable on x86_64 and i386.
-// REQUIRES: x86_64-supported-target,i386-supported-target
+// REQUIRES: x86_64-supported-target
 
 #include <stdlib.h>
 #include <stdio.h>





More information about the llvm-commits mailing list