From: Alp Toker Date: Fri, 27 Jun 2014 03:11:38 +0000 (+0000) Subject: Account for differences in grep implementations X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1d1ac112f0368661eb379244698c604de12476d7;p=platform%2Fupstream%2Fllvm.git Account for differences in grep implementations llvm-svn: 211856 --- diff --git a/clang/test/Frontend/ir-support.c b/clang/test/Frontend/ir-support.c index f6078e5..f69161e 100644 --- a/clang/test/Frontend/ir-support.c +++ b/clang/test/Frontend/ir-support.c @@ -4,16 +4,16 @@ // We strip differing '.file' directives before comparing. // Reference output: -// RUN: %clang_cc1 -S -o - %s | grep -v '\t\.file' > %t.s +// RUN: %clang_cc1 -S -o - %s | grep -v '\.file' > %t.s // LLVM bitcode: // RUN: %clang_cc1 -emit-llvm-bc -o %t.bc %s -// RUN: %clang_cc1 -S -o - %t.bc | grep -v '\t\.file' > %t.bc.s +// RUN: %clang_cc1 -S -o - %t.bc | grep -v '\.file' > %t.bc.s // RUN: diff %t.s %t.bc.s // LLVM IR source code: // RUN: %clang_cc1 -emit-llvm -o %t.ll %s -// RUN: %clang_cc1 -S -o - %t.ll | grep -v '\t\.file' > %t.ll.s +// RUN: %clang_cc1 -S -o - %t.ll | grep -v '\.file' > %t.ll.s // RUN: diff %t.s %t.ll.s int f() { return 0; }