summaryrefslogtreecommitdiffstats
path: root/test/Driver/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Driver/hello.c')
-rw-r--r--test/Driver/hello.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Driver/hello.c b/test/Driver/hello.c
new file mode 100644
index 0000000..7dbe9c7
--- /dev/null
+++ b/test/Driver/hello.c
@@ -0,0 +1,14 @@
+// RUN: clang -ccc-echo -o %t %s 2> %t.log &&
+
+// Make sure we used clang.
+// RUN: grep 'clang-cc" .*hello.c' %t.log &&
+
+// RUN: %t > %t.out &&
+// RUN: grep "I'm a little driver, short and stout." %t.out
+
+#include <stdio.h>
+
+int main() {
+ printf("I'm a little driver, short and stout.");
+ return 0;
+}
OpenPOWER on IntegriCloud