aboutsummaryrefslogtreecommitdiff
path: root/test/Driver/hello.c
blob: 0df1341e4ea8a2097f6f3abfacb5d655b7567ee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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

// 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;
}