[llvm-commits] [llvm] r170726 - in /llvm/trunk/test/MC/X86/AlignedBundling: align-mode-argument-error.s asm-printing-bundle-directives.s bundle-group-too-large-error.s lock-without-bundle-mode-error.s switch-section-locked-error.s unlock-without-lock-error.s

Eli Bendersky eliben at google.com
Thu Dec 20 11:54:02 PST 2012


Author: eliben
Date: Thu Dec 20 13:54:02 2012
New Revision: 170726

URL: http://llvm.org/viewvc/llvm-project?rev=170726&view=rev
Log:
Change Lit error redirection to FileCheck to a more common syntax since it
can potentially cause some bots to fail.

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

Modified: llvm/trunk/test/MC/X86/AlignedBundling/align-mode-argument-error.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/X86/AlignedBundling/align-mode-argument-error.s?rev=170726&r1=170725&r2=170726&view=diff
==============================================================================
--- llvm/trunk/test/MC/X86/AlignedBundling/align-mode-argument-error.s (original)
+++ llvm/trunk/test/MC/X86/AlignedBundling/align-mode-argument-error.s Thu Dec 20 13:54:02 2012
@@ -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

Modified: llvm/trunk/test/MC/X86/AlignedBundling/asm-printing-bundle-directives.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/X86/AlignedBundling/asm-printing-bundle-directives.s?rev=170726&r1=170725&r2=170726&view=diff
==============================================================================
--- llvm/trunk/test/MC/X86/AlignedBundling/asm-printing-bundle-directives.s (original)
+++ llvm/trunk/test/MC/X86/AlignedBundling/asm-printing-bundle-directives.s Thu Dec 20 13:54:02 2012
@@ -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.

Modified: llvm/trunk/test/MC/X86/AlignedBundling/bundle-group-too-large-error.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/X86/AlignedBundling/bundle-group-too-large-error.s?rev=170726&r1=170725&r2=170726&view=diff
==============================================================================
--- llvm/trunk/test/MC/X86/AlignedBundling/bundle-group-too-large-error.s (original)
+++ llvm/trunk/test/MC/X86/AlignedBundling/bundle-group-too-large-error.s Thu Dec 20 13:54:02 2012
@@ -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
 

Modified: llvm/trunk/test/MC/X86/AlignedBundling/lock-without-bundle-mode-error.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/X86/AlignedBundling/lock-without-bundle-mode-error.s?rev=170726&r1=170725&r2=170726&view=diff
==============================================================================
--- llvm/trunk/test/MC/X86/AlignedBundling/lock-without-bundle-mode-error.s (original)
+++ llvm/trunk/test/MC/X86/AlignedBundling/lock-without-bundle-mode-error.s Thu Dec 20 13:54:02 2012
@@ -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
 

Modified: llvm/trunk/test/MC/X86/AlignedBundling/switch-section-locked-error.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/X86/AlignedBundling/switch-section-locked-error.s?rev=170726&r1=170725&r2=170726&view=diff
==============================================================================
--- llvm/trunk/test/MC/X86/AlignedBundling/switch-section-locked-error.s (original)
+++ llvm/trunk/test/MC/X86/AlignedBundling/switch-section-locked-error.s Thu Dec 20 13:54:02 2012
@@ -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.

Modified: llvm/trunk/test/MC/X86/AlignedBundling/unlock-without-lock-error.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/X86/AlignedBundling/unlock-without-lock-error.s?rev=170726&r1=170725&r2=170726&view=diff
==============================================================================
--- llvm/trunk/test/MC/X86/AlignedBundling/unlock-without-lock-error.s (original)
+++ llvm/trunk/test/MC/X86/AlignedBundling/unlock-without-lock-error.s Thu Dec 20 13:54:02 2012
@@ -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
 





More information about the llvm-commits mailing list