blob: 7dbe9c74f9c553c66eb1bd0c2b1b13b3e73ac61b [file] [log] [blame]
Daniel Dunbar7ec3daf2009-03-24 03:07:05 +00001// RUN: clang -ccc-echo -o %t %s 2> %t.log &&
Daniel Dunbar622bfc82009-03-18 22:49:41 +00002
3// Make sure we used clang.
Daniel Dunbard7d5f022009-03-24 02:24:46 +00004// RUN: grep 'clang-cc" .*hello.c' %t.log &&
Daniel Dunbar622bfc82009-03-18 22:49:41 +00005
6// RUN: %t > %t.out &&
7// RUN: grep "I'm a little driver, short and stout." %t.out
8
9#include <stdio.h>
10
11int main() {
12 printf("I'm a little driver, short and stout.");
13 return 0;
14}