projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da469ec
)
Quote wildcard in test's grep argument
author
Alp Toker
<alp@nuanti.com>
Sat, 26 Oct 2013 14:52:48 +0000
(14:52 +0000)
committer
Alp Toker
<alp@nuanti.com>
Sat, 26 Oct 2013 14:52:48 +0000
(14:52 +0000)
The * could otherwise cause shell pathname expansion.
llvm-svn: 193473
clang/test/CodeGen/2007-04-14-FNoBuiltin.c
patch
|
blob
|
history
diff --git
a/clang/test/CodeGen/2007-04-14-FNoBuiltin.c
b/clang/test/CodeGen/2007-04-14-FNoBuiltin.c
index
a5fda63
..
5c95c08
100644
(file)
--- a/
clang/test/CodeGen/2007-04-14-FNoBuiltin.c
+++ b/
clang/test/CodeGen/2007-04-14-FNoBuiltin.c
@@
-1,4
+1,4
@@
-// RUN: %clang_cc1 -emit-llvm %s -O2 -fno-builtin -o - | grep
call.*printf
+// RUN: %clang_cc1 -emit-llvm %s -O2 -fno-builtin -o - | grep
'call.*printf'
// Check that -fno-builtin is honored.
extern int printf(const char*, ...);