diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2009-05-16 00:34:42 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2009-05-16 00:34:42 +0000 |
commit | 9d7fb58581d3f3c2b1ec18c1e8f2c77bfa23cada (patch) | |
tree | 8fa3091cb90d2533f18b858d6b5abc068946a526 /llvm/test/CodeGen/X86/vector.ll | |
parent | 36c027ab18971cf40e3f5c91e67310719410645e (diff) | |
download | bcm5719-llvm-9d7fb58581d3f3c2b1ec18c1e8f2c77bfa23cada.tar.gz bcm5719-llvm-9d7fb58581d3f3c2b1ec18c1e8f2c77bfa23cada.zip |
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
Diffstat (limited to 'llvm/test/CodeGen/X86/vector.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/vector.ll | 4 |
1 files changed, 2 insertions, 2 deletions
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> |