diff options
author | Derek Schuff <dschuff@chromium.org> | 2013-01-25 15:49:24 -0800 |
---|---|---|
committer | Derek Schuff <dschuff@chromium.org> | 2013-01-25 15:49:24 -0800 |
commit | 32cf7c0ab28655e22b5915b8a849451d9b0ff97f (patch) | |
tree | 6395922b5ad65cc31110f63e7cab3800a8c5a72b /test/NaCl | |
parent | 618534a25f124f80b47d7969db17ee3ec8edad69 (diff) |
Use 2>&1 to include stderr in pipe instead of |&
Apparently OSX's bash doesn't support it.
R=eliben@chromium.org,jvoung@chromium.org
BUG=none
TEST=llvm regression
Review URL: https://codereview.chromium.org/12089002
Diffstat (limited to 'test/NaCl')
-rw-r--r-- | test/NaCl/PNaClABI/instructions.ll | 2 | ||||
-rw-r--r-- | test/NaCl/PNaClABI/linkagetypes.ll | 2 | ||||
-rw-r--r-- | test/NaCl/PNaClABI/types.ll | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/NaCl/PNaClABI/instructions.ll b/test/NaCl/PNaClABI/instructions.ll index 33ee9174e1..0ec6cc7766 100644 --- a/test/NaCl/PNaClABI/instructions.ll +++ b/test/NaCl/PNaClABI/instructions.ll @@ -1,4 +1,4 @@ -; RUN: opt -verify-pnaclabi-functions -analyze < %s |& FileCheck %s +; RUN: opt -verify-pnaclabi-functions -analyze < %s 2>&1 | FileCheck %s ; Test instruction opcodes allowed by PNaCl ABI ; No testing yet of operands, types, attributes, etc diff --git a/test/NaCl/PNaClABI/linkagetypes.ll b/test/NaCl/PNaClABI/linkagetypes.ll index 477b7d6d91..76a65a8d02 100644 --- a/test/NaCl/PNaClABI/linkagetypes.ll +++ b/test/NaCl/PNaClABI/linkagetypes.ll @@ -1,4 +1,4 @@ -; RUN: opt -verify-pnaclabi-module -analyze < %s |& FileCheck %s +; RUN: opt -verify-pnaclabi-module -analyze < %s 2>&1 | FileCheck %s ; Test linkage types allowed by PNaCl ABI target datalayout = "e-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-p:32:32:32-v128:32:32" diff --git a/test/NaCl/PNaClABI/types.ll b/test/NaCl/PNaClABI/types.ll index 3656b0a51d..f5f246f824 100644 --- a/test/NaCl/PNaClABI/types.ll +++ b/test/NaCl/PNaClABI/types.ll @@ -1,4 +1,4 @@ -; RUN: opt -verify-pnaclabi-module -analyze < %s |& FileCheck %s +; RUN: opt -verify-pnaclabi-module -analyze < %s 2>&1 | FileCheck %s ; Test types allowed by PNaCl ABI ; Basic global types |