From 222e2a7620e6520ffaf4fc4e69d79c18da31542e Mon Sep 17 00:00:00 2001 From: "Zancanaro; Carlo" Date: Mon, 24 Sep 2012 09:58:17 +1000 Subject: Add the clang library to the repo (with some of my changes, too). --- clang/test/Driver/hello.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 clang/test/Driver/hello.c (limited to 'clang/test/Driver/hello.c') diff --git a/clang/test/Driver/hello.c b/clang/test/Driver/hello.c new file mode 100644 index 0000000..c2260e5 --- /dev/null +++ b/clang/test/Driver/hello.c @@ -0,0 +1,18 @@ +// 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 + +int main() { + printf("I'm a little driver, short and stout."); + return 0; +} -- cgit v1.2.3