From: Hal Finkel Date: Mon, 17 Oct 2011 16:01:41 +0000 (+0000) Subject: use FileCheck and not grep in new tests X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3bca0b9d6ed545360ad68c86495fde4c983ce8b6;p=oota-llvm.git use FileCheck and not grep in new tests git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142189 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/PowerPC/ppc440-fp-basic.ll b/test/CodeGen/PowerPC/ppc440-fp-basic.ll index 51c14378637..1fad2fa3aaf 100644 --- a/test/CodeGen/PowerPC/ppc440-fp-basic.ll +++ b/test/CodeGen/PowerPC/ppc440-fp-basic.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=ppc32 -mcpu=440 | grep fmadd +; RUN: llc < %s -march=ppc32 -mcpu=440 | FileCheck %s %0 = type { double, double } @@ -29,4 +29,5 @@ entry: store double %add.r, double* %real store double %add.i, double* %imag ret void +; CHECK: fmadd } diff --git a/test/CodeGen/PowerPC/ppc440-msync.ll b/test/CodeGen/PowerPC/ppc440-msync.ll index 4d663bc56ce..1274173256c 100644 --- a/test/CodeGen/PowerPC/ppc440-msync.ll +++ b/test/CodeGen/PowerPC/ppc440-msync.ll @@ -1,7 +1,5 @@ -; RUN: llc < %s -march=ppc32 -o %t -; RUN: grep sync %t -; RUN: not grep msync %t -; RUN: llc < %s -march=ppc32 -mcpu=440 | grep msync +; RUN: llc < %s -march=ppc32 | FileCheck %s +; RUN: llc < %s -march=ppc32 -mcpu=440 | FileCheck %s -check-prefix=BE-CHK define i32 @has_a_fence(i32 %a, i32 %b) nounwind { entry: @@ -11,10 +9,16 @@ entry: IfEqual: fence release +; CHECK: sync +; CHECK-NOT: msync +; BE-CHK: msync br label %end IfUnequal: fence release +; CHECK: sync +; CHECK-NOT: msync +; BE-CHK: msync ret i32 0 end: