From 410ba460a0b1842185081aa5606c2ec14c5efb05 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Wed, 11 Mar 2015 13:55:41 +0000 Subject: [PATCH] Prefer pipes over temporary files in a feeble attempt to stabilize this test on windows. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231923 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/GCOVProfiling/linezero.ll | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/Transforms/GCOVProfiling/linezero.ll b/test/Transforms/GCOVProfiling/linezero.ll index c6bde781000..54c2c7c53a1 100644 --- a/test/Transforms/GCOVProfiling/linezero.ll +++ b/test/Transforms/GCOVProfiling/linezero.ll @@ -1,6 +1,5 @@ -; RUN: sed -e 's|PATTERN|%/T|g' < %s > %t1 -; RUN: opt -insert-gcov-profiling -disable-output < %t1 -; RUN: rm %T/linezero.gcno %t1 +; RUN: sed -e 's|PATTERN|%/T|g' %s | opt -insert-gcov-profiling -disable-output +; RUN: rm %T/linezero.gcno ; This is a crash test. -- 2.34.1