diff options
author | Puyan Lotfi <puyan@puyan.org> | 2019-11-19 21:42:17 -0500 |
---|---|---|
committer | Puyan Lotfi <puyan@puyan.org> | 2019-11-19 21:42:17 -0500 |
commit | f37356d6f60ae5db978611621d3a375ed87ec0f0 (patch) | |
tree | b851a7c4f6796b1e55f64d669d05d5a00a4d0e2f | |
parent | 8700831734811cb89eafb72b75206f21e9f047e9 (diff) | |
download | bcm5719-llvm-f37356d6f60ae5db978611621d3a375ed87ec0f0.tar.gz bcm5719-llvm-f37356d6f60ae5db978611621d3a375ed87ec0f0.zip |
[clang][IFS][test] Removing driver-test.c. Test is still too brittle.
Removing this test because if I add a triple then there are link falures
on targets like ppc and s390x. If I don't add a triple then on PS4
targets the clang driver tries to invoke orbis-ld which ends up being
not found.
-rw-r--r-- | clang/test/InterfaceStubs/driver-test.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/clang/test/InterfaceStubs/driver-test.c b/clang/test/InterfaceStubs/driver-test.c deleted file mode 100644 index 425d87271f3..00000000000 --- a/clang/test/InterfaceStubs/driver-test.c +++ /dev/null @@ -1,15 +0,0 @@ -// REQUIRES: x86-registered-target -// REQUIRES: !powerpc-registered-target -// REQUIRES: !system-darwin && !system-windows - -// RUN: %clang -o %t1 -target x86_64-unknown-linux-gnu \ -// RUN: -emit-interface-stubs -emit-merged-ifs %s %S/object.c %S/weak.cpp -// RUN: cat %t1.ifs | FileCheck %s - -// CHECK-DAG: data -// CHECK-DAG: foo -// CHECK-DAG: strongFunc -// CHECK-DAG: weakFunc - -int foo(int bar) { return 42 + 1844; } -int main() { return foo(23); } |