diff options
author | Puyan Lotfi <puyan@puyan.org> | 2019-11-19 18:12:07 -0500 |
---|---|---|
committer | Puyan Lotfi <puyan@puyan.org> | 2019-11-19 18:12:07 -0500 |
commit | 377d70cdea733e36107e99d9148864d24797d51c (patch) | |
tree | 7b90c1966487a9ca9d8cc19deaa17a22092f15b8 | |
parent | ea8e02822341e2421b94167d828d3f224e767424 (diff) | |
download | bcm5719-llvm-377d70cdea733e36107e99d9148864d24797d51c.tar.gz bcm5719-llvm-377d70cdea733e36107e99d9148864d24797d51c.zip |
[clang][IFS] Fixing failing bots that do not have PPC target or "orbis-ld"
-rw-r--r-- | clang/test/InterfaceStubs/driver-test.c | 2 | ||||
-rw-r--r-- | clang/test/InterfaceStubs/ppc.cpp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/InterfaceStubs/driver-test.c b/clang/test/InterfaceStubs/driver-test.c index ed5e5a04a22..b34536a2976 100644 --- a/clang/test/InterfaceStubs/driver-test.c +++ b/clang/test/InterfaceStubs/driver-test.c @@ -1,3 +1,5 @@ +// REQUIRES: !system-darwin && !system-windows + // RUN: %clang -o %t1 -emit-interface-stubs -emit-merged-ifs %s %S/object.c %S/weak.cpp // RUN: cat %t1.ifs | FileCheck %s diff --git a/clang/test/InterfaceStubs/ppc.cpp b/clang/test/InterfaceStubs/ppc.cpp index 3155bbd825c..9a91697d950 100644 --- a/clang/test/InterfaceStubs/ppc.cpp +++ b/clang/test/InterfaceStubs/ppc.cpp @@ -1,3 +1,5 @@ +// REQUIRES: powerpc-registered-target + // RUN: %clang -x c++ -target powerpc64le-unknown-linux-gnu -o - %s \ // RUN: -emit-interface-stubs -emit-merged-ifs -S | \ // RUN: FileCheck -check-prefix=CHECK-IFS %s |