summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2014-06-24 17:31:05 +0000
committerDavid Blaikie <dblaikie@gmail.com>2014-06-24 17:31:05 +0000
commit78659a162630c01c6cfacf9eb374f622b878f858 (patch)
treee3c776040f9204ca1bf97d6b7f99358c64bfa4a1
parenta36053be37f9f3e3fff6aadb90d81d4e06d61d1f (diff)
downloadclang-78659a162630c01c6cfacf9eb374f622b878f858.tar.gz
clang-78659a162630c01c6cfacf9eb374f622b878f858.tar.bz2
clang-78659a162630c01c6cfacf9eb374f622b878f858.tar.xz
Fix test added in r211610 so it doesn't race on output file creation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211615 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Frontend/optimization-remark.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Frontend/optimization-remark.c b/test/Frontend/optimization-remark.c
index 15b8f360e8..a092108676 100644
--- a/test/Frontend/optimization-remark.c
+++ b/test/Frontend/optimization-remark.c
@@ -5,7 +5,7 @@
// RUN: %clang_cc1 %s -Rpass=inline -Rpass-analysis=inline -Rpass-missed=inline -O0 -emit-llvm-only -verify
// RUN: %clang_cc1 %s -DNDEBUG -Rpass=inline -emit-llvm-only -verify
-// RUN: %clang_cc1 %s -Rpass=inline -emit-llvm -o %t 2>/dev/null | FileCheck %s < %t
+// RUN: %clang_cc1 %s -Rpass=inline -emit-llvm -o - 2>/dev/null | FileCheck %s
// -Rpass should produce source location annotations, exclusively (just
// like -gmlt).