Remove Clang tests since clang is not installed on the buildbots.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60767 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Mikhail Glushenkov 2008-12-09 15:11:45 +00:00
parent 78bd53d296
commit 260435c807
3 changed files with 0 additions and 27 deletions

View File

@ -1,11 +0,0 @@
/*
* Test basic functionality of llvmc -clang
*
* RUN: llvmc -clang %s -o %t
* RUN: ./%t | grep {Hello Clang}
*/
int main() {
printf("Hello Clang world!\n");
return 0;
}

View File

@ -1,13 +0,0 @@
/*
* Test that `llvmc -clang` can link multiple files
*
* RUN: llvmc -clang %s %p/test_data/clang_together.c -o %t
* RUN: ./%t | grep {Hello Clang}
*/
void f();
int main() {
f();
return 0;
}

View File

@ -1,3 +0,0 @@
void f() {
printf("Hello Clang world!\n");
}