diff options
author | Kuba Mracek <mracek@apple.com> | 2017-05-02 21:22:29 +0000 |
---|---|---|
committer | Kuba Mracek <mracek@apple.com> | 2017-05-02 21:22:29 +0000 |
commit | 95379129619a2dee2f3b298679ddbcdda581ad94 (patch) | |
tree | 763154eb96e9a528c657c2e9aafe0d6b2a84b228 | |
parent | c34431380370bf6638d01fd95d86b5d2e4886805 (diff) | |
download | bcm5719-llvm-95379129619a2dee2f3b298679ddbcdda581ad94.tar.gz bcm5719-llvm-95379129619a2dee2f3b298679ddbcdda581ad94.zip |
[asan] Mark some more testcases as unsupported on iOS.
llvm-svn: 301976
5 files changed, 5 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/Posix/coverage-module-unloaded.cc b/compiler-rt/test/asan/TestCases/Posix/coverage-module-unloaded.cc index d492af6662f..db27283a62c 100644 --- a/compiler-rt/test/asan/TestCases/Posix/coverage-module-unloaded.cc +++ b/compiler-rt/test/asan/TestCases/Posix/coverage-module-unloaded.cc @@ -10,6 +10,7 @@ // // https://code.google.com/p/address-sanitizer/issues/detail?id=263 // XFAIL: android +// UNSUPPORTED: ios #include <assert.h> #include <dlfcn.h> diff --git a/compiler-rt/test/asan/TestCases/Posix/glob.cc b/compiler-rt/test/asan/TestCases/Posix/glob.cc index e0eeb33cca2..46d4a0d8d43 100644 --- a/compiler-rt/test/asan/TestCases/Posix/glob.cc +++ b/compiler-rt/test/asan/TestCases/Posix/glob.cc @@ -1,5 +1,6 @@ // FIXME: https://code.google.com/p/address-sanitizer/issues/detail?id=316 // XFAIL: android +// UNSUPPORTED: ios // // RUN: %clangxx_asan -O0 %s -o %t && %run %t %p 2>&1 | FileCheck %s // RUN: %clangxx_asan -O3 %s -o %t && %run %t %p 2>&1 | FileCheck %s diff --git a/compiler-rt/test/asan/TestCases/log-path_test.cc b/compiler-rt/test/asan/TestCases/log-path_test.cc index b4218ad8523..710d2201770 100644 --- a/compiler-rt/test/asan/TestCases/log-path_test.cc +++ b/compiler-rt/test/asan/TestCases/log-path_test.cc @@ -1,5 +1,6 @@ // FIXME: https://code.google.com/p/address-sanitizer/issues/detail?id=316 // XFAIL: android +// UNSUPPORTED: ios // // The for loop in the backticks below requires bash. // REQUIRES: shell diff --git a/compiler-rt/test/asan/TestCases/suppressions-exec-relative-location.cc b/compiler-rt/test/asan/TestCases/suppressions-exec-relative-location.cc index 740cecee15c..d4e214d35a0 100644 --- a/compiler-rt/test/asan/TestCases/suppressions-exec-relative-location.cc +++ b/compiler-rt/test/asan/TestCases/suppressions-exec-relative-location.cc @@ -25,6 +25,7 @@ // XFAIL: android // XFAIL: win32 +// UNSUPPORTED: ios #include <stdio.h> #include <stdlib.h> diff --git a/compiler-rt/test/asan/TestCases/verbose-log-path_test.cc b/compiler-rt/test/asan/TestCases/verbose-log-path_test.cc index 47a5c226a1b..a63c5847524 100644 --- a/compiler-rt/test/asan/TestCases/verbose-log-path_test.cc +++ b/compiler-rt/test/asan/TestCases/verbose-log-path_test.cc @@ -10,6 +10,7 @@ // FIXME: only FreeBSD and Linux have verbose log paths now. // XFAIL: win32,android +// UNSUPPORTED: ios #include <stdlib.h> #include <string.h> |