From 17749542745403b7aaf82a35c97b28d1c5b6a9a7 Mon Sep 17 00:00:00 2001 From: Alp Toker Date: Sat, 26 Oct 2013 14:52:48 +0000 Subject: [PATCH] Quote wildcard in test's grep argument The * could otherwise cause shell pathname expansion. llvm-svn: 193473 --- clang/test/CodeGen/2007-04-14-FNoBuiltin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/CodeGen/2007-04-14-FNoBuiltin.c b/clang/test/CodeGen/2007-04-14-FNoBuiltin.c index a5fda6306f28..5c95c0810e47 100644 --- 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*, ...);