opnsense-src/test/Driver/hello.c
2010-01-01 10:34:51 +00:00

18 lines
405 B
C

// RUN: %clang -ccc-echo -o %t %s 2> %t.log
// Make sure we used clang.
// RUN: grep 'clang" -cc1 .*hello.c' %t.log
// RUN: %t > %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;
}