diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-01-23 23:06:28 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-01-23 23:06:28 +0000 |
commit | 1f631645f8c7e4540b3a244cf070d7d689f3e49e (patch) | |
tree | 0b216a7df44348a9e6314bac6116040dcabef9ab /clang/test/Lexer/unknown-char.c | |
parent | 958d8f2fcd490e26e5cb9a100c9cda1f4b6cda2a (diff) | |
download | bcm5719-llvm-1f631645f8c7e4540b3a244cf070d7d689f3e49e.tar.gz bcm5719-llvm-1f631645f8c7e4540b3a244cf070d7d689f3e49e.zip |
Don't check lines beginning with '#', since they could contain a path with the unexpected word in them.
llvm-svn: 173306
Diffstat (limited to 'clang/test/Lexer/unknown-char.c')
-rw-r--r-- | clang/test/Lexer/unknown-char.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Lexer/unknown-char.c b/clang/test/Lexer/unknown-char.c index 334df37225e..57f7904998d 100644 --- a/clang/test/Lexer/unknown-char.c +++ b/clang/test/Lexer/unknown-char.c @@ -1,2 +1,2 @@ -// RUN: %clang_cc1 -E %s 2>&1 | not grep error +// RUN: %clang_cc1 -E %s 2>&1 | grep -v '^#' | not grep error ` ` ` ` |