Change Lit error redirection to FileCheck to a more common syntax since it
authorEli Bendersky <eliben@google.com>
Thu, 20 Dec 2012 19:54:02 +0000 (19:54 +0000)
committerEli Bendersky <eliben@google.com>
Thu, 20 Dec 2012 19:54:02 +0000 (19:54 +0000)
can potentially cause some bots to fail.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170726 91177308-0d34-0410-b5e6-96231b3b80d8

test/MC/X86/AlignedBundling/align-mode-argument-error.s
test/MC/X86/AlignedBundling/asm-printing-bundle-directives.s
test/MC/X86/AlignedBundling/bundle-group-too-large-error.s
test/MC/X86/AlignedBundling/lock-without-bundle-mode-error.s
test/MC/X86/AlignedBundling/switch-section-locked-error.s
test/MC/X86/AlignedBundling/unlock-without-lock-error.s

index f7225be8fc049cd8f6de090abddf10ee64e993fd..b4ce0a9d103abc5d0e6e6b79e158d9bdb4ef9aca 100644 (file)
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - |& FileCheck %s
+# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
 
 # Missing .bundle_align_mode argument
 # CHECK: error: unknown token
index 685fcc129a5133f6d79ff097216468998cbbc297..1892e15850bbbb89b820cc9ab7f7d40ab37db7d1 100644 (file)
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -filetype=asm -triple x86_64-pc-linux-gnu %s -o - |& FileCheck %s
+# RUN: llvm-mc -filetype=asm -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
 
 # Just a simple test for the assembly emitter - making sure it emits back the
 # bundling directives.
index 7bc38de9846bbe86beb8b3c06db2451a014b2518..722bf7b9227f58bec0fa4d8c6a620306d3139f91 100644 (file)
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - |& FileCheck %s
+# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
 
 # CHECK: ERROR: Fragment can't be larger than a bundle size
 
index 8d82b29ec618893e6dae0ac139f63e9a36358d9a..d45a9b4a5dfb0287dcb588f29455fe5f0c9263cb 100644 (file)
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - |& FileCheck %s
+# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
 
 # .bundle_lock can't come without a .bundle_align_mode before it
 
index 10304b53efe4806f0a28cd5680fd4bc1099a1e59..af41e19212527abae9702f8ce4b061fe1fb7bd90 100644 (file)
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - |& FileCheck %s
+# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
 
 # This test invokes .bundle_lock and then switches to a different section
 # w/o the appropriate unlock.
index 4f7a4ba4b1c66617f3fa1387cd3349d7a787681d..699511d4e6b68151918b5c7e20f0f91d8967db18 100644 (file)
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - |& FileCheck %s
+# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
 
 # .bundle_unlock can't come without a .bundle_lock before it