summaryrefslogtreecommitdiffstats
path: root/test/Driver/hello.c
blob: 7dbe9c74f9c553c66eb1bd0c2b1b13b3e73ac61b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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