Make this testcase more interesting, actually add a RUN line.

llvm-svn: 38738
This commit is contained in:
Chris Lattner 2006-07-19 06:34:41 +00:00
parent a7e2e74cef
commit b563379d78
1 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,11 @@
// clang %s -E | grep 'bar foo (2)'
// RUN: clang %s -E | grep 'bar foo (2)' &&
// RUN: clang %s -E | grep 'm(ABCD)'
#define foo(x) bar x
foo(foo) (2)
#define m(a) a(w)
#define w ABCD
m(m) // m(ABCD)