summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2012-09-20 18:42:02 +0000
committerDavid Blaikie <dblaikie@gmail.com>2012-09-20 18:42:02 +0000
commit1db86e1f6b63de5b189ed2f5ebf455f9df556f38 (patch)
tree52af447d54007ccfe2d1273b300afeb8ea9e990c
parent6590220181b4e77cfd66fa9c8c63cd86088d49ad (diff)
downloadbcm5719-llvm-1db86e1f6b63de5b189ed2f5ebf455f9df556f38.tar.gz
bcm5719-llvm-1db86e1f6b63de5b189ed2f5ebf455f9df556f38.zip
Remove a test that is non-portable (cannot be execute on cross builds, for example)
While it might be nice to have a quick end-to-end sanity test, it's just not really the right place for it & would require more work to enable lit to provide a detection flag ("XFAIL: cross" or similar) than the value we get from having this test. Early on it might've made more sense, but these days we've got some pretty good coverage across the stack with more targeted tests. llvm-svn: 164314
-rw-r--r--clang/test/Driver/hello.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/clang/test/Driver/hello.c b/clang/test/Driver/hello.c
deleted file mode 100644
index c2260e53eb3..00000000000
--- a/clang/test/Driver/hello.c
+++ /dev/null
@@ -1,18 +0,0 @@
-// RUN: %clang -ccc-echo -o %t.exe %s 2> %t.log
-
-// Make sure we used clang.
-// RUN: grep 'clang\(-[0-9.]\+\)\?\(\.[Ee][Xx][Ee]\)\?" -cc1 .*hello.c' %t.log
-
-// RUN: %t.exe > %t.out
-// RUN: grep "I'm a little driver, short and stout." %t.out
-
-// FIXME: We don't have a usable assembler on Windows, so we can't build real
-// apps yet.
-// XFAIL: win32
-
-#include <stdio.h>
-
-int main() {
- printf("I'm a little driver, short and stout.");
- return 0;
-}
OpenPOWER on IntegriCloud