[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.
This commit is contained in:
Puyan Lotfi 2019-11-19 21:42:17 -05:00
parent 8700831734
commit f37356d6f6

View File

@ -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); }