[llvm] r229157 - Fix R600 test deadlock on Windows by giving FileCheck an argument

Reid Kleckner reid at kleckner.net
Fri Feb 13 13:27:28 PST 2015


Author: rnk
Date: Fri Feb 13 15:27:28 2015
New Revision: 229157

URL: http://llvm.org/viewvc/llvm-project?rev=229157&view=rev
Log:
Fix R600 test deadlock on Windows by giving FileCheck an argument

llc would hang trying to write output to a full pipe that FileCheck
wasn't reading. FileCheck wasn't reading from stdin because it needs a
file as a positional argument.

Modified:
    llvm/trunk/test/CodeGen/R600/store-v3i64.ll

Modified: llvm/trunk/test/CodeGen/R600/store-v3i64.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/store-v3i64.ll?rev=229157&r1=229156&r2=229157&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/R600/store-v3i64.ll (original)
+++ llvm/trunk/test/CodeGen/R600/store-v3i64.ll Fri Feb 13 15:27:28 2015
@@ -1,6 +1,6 @@
 ; XFAIL: *
-; RUN: llc -march=amdgcn -mcpu=SI -verify-machineinstrs< %s | FileCheck -check-prefix=SI
-; RUN: llc -march=amdgcn -mcpu=tonga -verify-machineinstrs< %s | FileCheck -check-prefix=SI
+; RUN: llc -march=amdgcn -mcpu=SI -verify-machineinstrs< %s | FileCheck -check-prefix=SI %s
+; RUN: llc -march=amdgcn -mcpu=tonga -verify-machineinstrs< %s | FileCheck -check-prefix=SI %s
 
 ; SI-LABEL: {{^}}global_store_v3i64:
 ; SI: buffer_store_dwordx4





More information about the llvm-commits mailing list