Quote wildcard in test's grep argument
authorAlp Toker <alp@nuanti.com>
Sat, 26 Oct 2013 14:52:48 +0000 (14:52 +0000)
committerAlp 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

index a5fda63..5c95c08 100644 (file)
@@ -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*, ...);