From 9d7fb58581d3f3c2b1ec18c1e8f2c77bfa23cada Mon Sep 17 00:00:00 2001 From: Jakob Stoklund Olesen Date: Sat, 16 May 2009 00:34:42 +0000 Subject: Help DejaGnu avoid pipe-jam by producing less output from certain test cases. When a test fails with more than a pipeful of output on stdout AND stderr, one of the DejaGnu programs blocks. The problem can be avoided by redirecting stdout to a file. llvm-svn: 71919 --- llvm/test/CodeGen/X86/vector.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/test/CodeGen/X86/vector.ll') diff --git a/llvm/test/CodeGen/X86/vector.ll b/llvm/test/CodeGen/X86/vector.ll index ab56c8ac5fc..e7f3b922013 100644 --- a/llvm/test/CodeGen/X86/vector.ll +++ b/llvm/test/CodeGen/X86/vector.ll @@ -1,6 +1,6 @@ ; Test that vectors are scalarized/lowered correctly. -; RUN: llvm-as < %s | llc -march=x86 -mcpu=i386 -; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah +; RUN: llvm-as < %s | llc -march=x86 -mcpu=i386 > %t +; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah > %t %d8 = type <8 x double> %f1 = type <1 x float> -- cgit v1.2.3