summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel Sanders <daniel.sanders@imgtec.com>2016-05-14 16:18:16 +0000
committerDaniel Sanders <daniel.sanders@imgtec.com>2016-05-14 16:18:16 +0000
commit6948b5e68fe7b8361951ad9a0b8a01f0b4847537 (patch)
treecc5b292f0f6441b6594befa29b5351789cf83676 /test
parent697cbda1194af86c0b18cdf60f03a474ba7bbd0c (diff)
[mips][ias] Two XFAIL's now pass on 32-bit MIPS.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@269571 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/asan/TestCases/Linux/local_alias.cc2
-rw-r--r--test/asan/TestCases/Linux/odr-violation.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/asan/TestCases/Linux/local_alias.cc b/test/asan/TestCases/Linux/local_alias.cc
index 275779c03..d941ff2f9 100644
--- a/test/asan/TestCases/Linux/local_alias.cc
+++ b/test/asan/TestCases/Linux/local_alias.cc
@@ -6,7 +6,7 @@
//
// FIXME: https://github.com/google/sanitizers/issues/316
// XFAIL: android
-// XFAIL: mips
+// XFAIL: mips64
//
// RUN: %clangxx_asan -DBUILD_INSTRUMENTED_DSO=1 -fPIC -shared -mllvm -asan-use-private-alias %s -o %t-INSTRUMENTED-SO.so
// RUN: %clangxx -DBUILD_UNINSTRUMENTED_DSO=1 -fPIC -shared %s -o %t-UNINSTRUMENTED-SO.so
diff --git a/test/asan/TestCases/Linux/odr-violation.cc b/test/asan/TestCases/Linux/odr-violation.cc
index c15f102b8..143fb6e14 100644
--- a/test/asan/TestCases/Linux/odr-violation.cc
+++ b/test/asan/TestCases/Linux/odr-violation.cc
@@ -1,6 +1,6 @@
// FIXME: https://code.google.com/p/address-sanitizer/issues/detail?id=316
// XFAIL: android
-// XFAIL: mips
+// XFAIL: mips64
//
// We use fast_unwind_on_malloc=0 to have full unwinding even w/o frame
// pointers. This setting is not on by default because it's too expensive.