summaryrefslogtreecommitdiff
path: root/test/cfi
diff options
context:
space:
mode:
authorVedant Kumar <vsk@apple.com>2016-11-14 22:50:13 +0000
committerVedant Kumar <vsk@apple.com>2016-11-14 22:50:13 +0000
commit4cdb99f90c5a162ed8873af94737ebda95abfb3c (patch)
tree73375fa0bcec87424614ce03e3eb31f8debc4fc3 /test/cfi
parent416f4bda9701fbab0ca1654fb1ab5e259ab0d941 (diff)
[cfi] Mark some tests as requiring additional support from the MachO writer
These tests need to be marked as unsupported on Darwin: http://lab.llvm.org:8080/green/job/clang-stage1-cmake-RA-expensive/1545 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@286902 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/cfi')
-rw-r--r--test/cfi/icall/external-call.c2
-rw-r--r--test/cfi/icall/weak.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/test/cfi/icall/external-call.c b/test/cfi/icall/external-call.c
index e90c7e042..d80b66a70 100644
--- a/test/cfi/icall/external-call.c
+++ b/test/cfi/icall/external-call.c
@@ -4,7 +4,7 @@
// This test uses jump tables containing PC-relative references to external
// symbols, which the Mach-O object writer does not currently support.
-// XFAIL: darwin
+// REQUIRES: rdar://problem/29255437
#include <stdlib.h>
#include <stdio.h>
diff --git a/test/cfi/icall/weak.c b/test/cfi/icall/weak.c
index 8acf41eb9..c5ec620b3 100644
--- a/test/cfi/icall/weak.c
+++ b/test/cfi/icall/weak.c
@@ -1,5 +1,6 @@
// Test that weak symbols stay weak.
// RUN: %clang_cfi -lm -o %t1 %s && %t1
+// REQUIRES: rdar://problem/29255437
__attribute__((weak)) void does_not_exist(void);