[compiler-rt] r313498 - Mark various failing tests with "UNSUPPORTED: ios".

Kuba Mracek via llvm-commits llvm-commits at lists.llvm.org
Sun Sep 17 13:00:43 PDT 2017


Author: kuba.brecka
Date: Sun Sep 17 13:00:43 2017
New Revision: 313498

URL: http://llvm.org/viewvc/llvm-project?rev=313498&view=rev
Log:
Mark various failing tests with "UNSUPPORTED: ios".


Modified:
    compiler-rt/trunk/test/asan/TestCases/Darwin/abort_on_error.cc
    compiler-rt/trunk/test/asan/TestCases/Darwin/reexec-insert-libraries-env.cc
    compiler-rt/trunk/test/asan/TestCases/Darwin/unset-insert-libraries-on-exec.cc
    compiler-rt/trunk/test/asan/TestCases/Posix/asan-symbolize-sanity-test.cc
    compiler-rt/trunk/test/asan/TestCases/Posix/deep_call_stack.cc
    compiler-rt/trunk/test/asan/TestCases/Posix/handle_abort_on_error.cc
    compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_test.cc
    compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_uaf_test.cc
    compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_with_new_from_class.cc
    compiler-rt/trunk/test/asan/TestCases/Posix/stack-overflow.cc
    compiler-rt/trunk/test/asan/TestCases/heavy_uar_test.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Darwin/abort_on_error.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Darwin/abort_on_error.cc?rev=313498&r1=313497&r2=313498&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Darwin/abort_on_error.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Darwin/abort_on_error.cc Sun Sep 17 13:00:43 2017
@@ -8,6 +8,8 @@
 // When we use lit's default ASAN_OPTIONS, we shouldn't crash.
 // RUN: not %run %t 2>&1 | FileCheck %s
 
+// UNSUPPORTED: ios
+
 #include <stdlib.h>
 int main() {
   char *x = (char*)malloc(10 * sizeof(char));

Modified: compiler-rt/trunk/test/asan/TestCases/Darwin/reexec-insert-libraries-env.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Darwin/reexec-insert-libraries-env.cc?rev=313498&r1=313497&r2=313498&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Darwin/reexec-insert-libraries-env.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Darwin/reexec-insert-libraries-env.cc Sun Sep 17 13:00:43 2017
@@ -10,6 +10,8 @@
 // RUN: %env DYLD_INSERT_LIBRARIES=darwin-dummy-shared-lib-so.dylib \
 // RUN:     %run %t 2>&1 | FileCheck %s || exit 1
 
+// UNSUPPORTED: ios
+
 #if !defined(SHARED_LIB)
 #include <stdio.h>
 #include <stdlib.h>

Modified: compiler-rt/trunk/test/asan/TestCases/Darwin/unset-insert-libraries-on-exec.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Darwin/unset-insert-libraries-on-exec.cc?rev=313498&r1=313497&r2=313498&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Darwin/unset-insert-libraries-on-exec.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Darwin/unset-insert-libraries-on-exec.cc Sun Sep 17 13:00:43 2017
@@ -13,6 +13,8 @@
 // RUN: %env DYLD_INSERT_LIBRARIES=%t-darwin-dummy-shared-lib-so.dylib \
 // RUN:     %run %t %t-echo-env 2>&1 | FileCheck %s || exit 1
 
+// UNSUPPORTED: ios
+
 #if !defined(SHARED_LIB)
 #include <unistd.h>
 int main(int argc, char *argv[]) {

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/asan-symbolize-sanity-test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/asan-symbolize-sanity-test.cc?rev=313498&r1=313497&r2=313498&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/asan-symbolize-sanity-test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/asan-symbolize-sanity-test.cc Sun Sep 17 13:00:43 2017
@@ -9,6 +9,8 @@
 // RUN: %env_asan_opts=symbolize=0 not %run %t 2>&1 | %asan_symbolize | FileCheck %s
 // REQUIRES: stable-runtime
 
+// UNSUPPORTED: ios
+
 #if !defined(SHARED_LIB)
 #include <dlfcn.h>
 #include <stdio.h>

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/deep_call_stack.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/deep_call_stack.cc?rev=313498&r1=313497&r2=313498&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/deep_call_stack.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/deep_call_stack.cc Sun Sep 17 13:00:43 2017
@@ -5,6 +5,9 @@
 
 // Also check that use_sigaltstack+verbosity doesn't crash.
 // RUN: %env_asan_opts=verbosity=1:use_sigaltstack=1:detect_stack_use_after_return=1 %run %t  | FileCheck %s
+
+// UNSUPPORTED: ios
+
 #include <stdio.h>
 
 __attribute__((noinline))

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/handle_abort_on_error.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/handle_abort_on_error.cc?rev=313498&r1=313497&r2=313498&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/handle_abort_on_error.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/handle_abort_on_error.cc Sun Sep 17 13:00:43 2017
@@ -1,6 +1,8 @@
 // Regression test: this used to abort() in SIGABRT handler in an infinite loop.
 // RUN: %clangxx_asan -O0 %s -o %t && %env_asan_opts=handle_abort=1,abort_on_error=1 not --crash %run %t 2>&1 | FileCheck %s
 
+// UNSUPPORTED: ios
+
 #include <stdlib.h>
 
 int main() {

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_test.cc?rev=313498&r1=313497&r2=313498&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_test.cc Sun Sep 17 13:00:43 2017
@@ -3,6 +3,9 @@
 // RUN:                                    not %run %t 2>&1  | FileCheck %s
 // RUN: %env_asan_opts=poison_array_cookie=1 not %run %t 2>&1  | FileCheck %s
 // RUN: %env_asan_opts=poison_array_cookie=0 not %run %t 2>&1  | FileCheck %s --check-prefix=NO_COOKIE
+
+// UNSUPPORTED: ios
+
 #include <stdio.h>
 #include <stdlib.h>
 struct C {

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_uaf_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_uaf_test.cc?rev=313498&r1=313497&r2=313498&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_uaf_test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_uaf_test.cc Sun Sep 17 13:00:43 2017
@@ -2,6 +2,9 @@
 // RUN: %clangxx_asan -O3 %s -o %t
 // RUN: %env_asan_opts=poison_array_cookie=1 not %run %t 2>&1  | FileCheck %s --check-prefix=COOKIE
 // RUN: %env_asan_opts=poison_array_cookie=0 not %run %t 2>&1  | FileCheck %s --check-prefix=NO_COOKIE
+
+// UNSUPPORTED: ios
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <assert.h>

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_with_new_from_class.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_with_new_from_class.cc?rev=313498&r1=313497&r2=313498&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_with_new_from_class.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_with_new_from_class.cc Sun Sep 17 13:00:43 2017
@@ -3,6 +3,9 @@
 // RUN: %clangxx_asan  %s -o %t && %run %t
 //
 // XFAIL: arm
+
+// UNSUPPORTED: ios
+
 #include <new>
 #include <stdlib.h>
 #include <stdint.h>

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/stack-overflow.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/stack-overflow.cc?rev=313498&r1=313497&r2=313498&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/stack-overflow.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/stack-overflow.cc Sun Sep 17 13:00:43 2017
@@ -16,6 +16,8 @@
 // RUN: not %run %t 2>&1 | FileCheck %s
 // REQUIRES: stable-runtime
 
+// UNSUPPORTED: ios
+
 #include <assert.h>
 #include <stdlib.h>
 #include <pthread.h>

Modified: compiler-rt/trunk/test/asan/TestCases/heavy_uar_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/heavy_uar_test.cc?rev=313498&r1=313497&r2=313498&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/heavy_uar_test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/heavy_uar_test.cc Sun Sep 17 13:00:43 2017
@@ -8,6 +8,8 @@
 // FIXME: Fix this test for dynamic runtime on armhf-linux.
 // UNSUPPORTED: armhf-linux && asan-dynamic-runtime
 
+// UNSUPPORTED: ios
+
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>




More information about the llvm-commits mailing list