blob: 8844edea02ff507e8f998722417c78ee7606e533 [file] [log] [blame]
// RUN: clang-driver -ccc-echo -o %t %s &> %t.log &&
// Make sure we used clang.
// RUN: grep 'clang" .*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;
}