[llvm] r185554 - Prefix failing commands with not to make clear they are expected to fail.
Rafael Espindola
rafael.espindola at gmail.com
Wed Jul 3 09:41:29 PDT 2013
Author: rafael
Date: Wed Jul 3 11:41:29 2013
New Revision: 185554
URL: http://llvm.org/viewvc/llvm-project?rev=185554&view=rev
Log:
Prefix failing commands with not to make clear they are expected to fail.
Modified:
llvm/trunk/test/CodeGen/ARM/2012-09-25-InlineAsmScalarToVectorConv.ll
llvm/trunk/test/CodeGen/ARM/2012-09-25-InlineAsmScalarToVectorConv2.ll
llvm/trunk/test/CodeGen/ARM/indirect-reg-input.ll
llvm/trunk/test/CodeGen/R600/vertex-fetch-encoding.ll
llvm/trunk/test/CodeGen/X86/nosse-error1.ll
llvm/trunk/test/CodeGen/X86/nosse-error2.ll
llvm/trunk/test/FileCheck/check-not-diaginfo.txt
llvm/trunk/test/MC/AArch64/elf-objdump.s
llvm/trunk/test/MC/AArch64/gicv3-regs-diagnostics.s
llvm/trunk/test/MC/AArch64/trace-regs-diagnostics.s
llvm/trunk/test/MC/ARM/arm-thumb-cpus.s
llvm/trunk/test/MC/ARM/arm-thumb-trustzone.s
llvm/trunk/test/MC/ARM/arm-trustzone.s
llvm/trunk/test/MC/ARM/eh-directive-fnend-diagnostics.s
llvm/trunk/test/MC/ARM/eh-directive-fnstart-diagnostics.s
llvm/trunk/test/MC/ARM/invalid-hint-arm.s
llvm/trunk/test/MC/ARM/invalid-hint-thumb.s
llvm/trunk/test/MC/AsmParser/align_invalid.s
llvm/trunk/test/MC/AsmParser/directive_align.s
llvm/trunk/test/MC/AsmParser/macros-darwin.s
llvm/trunk/test/MC/X86/AlignedBundling/align-mode-argument-error.s
llvm/trunk/test/MC/X86/AlignedBundling/bundle-group-too-large-error.s
llvm/trunk/test/MC/X86/AlignedBundling/bundle-lock-option-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/CodeGen/ARM/2012-09-25-InlineAsmScalarToVectorConv.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/2012-09-25-InlineAsmScalarToVectorConv.ll?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/2012-09-25-InlineAsmScalarToVectorConv.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/2012-09-25-InlineAsmScalarToVectorConv.ll Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=arm -mcpu=cortex-a8 2>&1 | FileCheck %s
+; RUN: not llc < %s -march=arm -mcpu=cortex-a8 2>&1 | FileCheck %s
; Check for error message:
; CHECK: non-trivial scalar-to-vector conversion, possible invalid constraint for vector type
Modified: llvm/trunk/test/CodeGen/ARM/2012-09-25-InlineAsmScalarToVectorConv2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/2012-09-25-InlineAsmScalarToVectorConv2.ll?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/2012-09-25-InlineAsmScalarToVectorConv2.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/2012-09-25-InlineAsmScalarToVectorConv2.ll Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=arm -mcpu=cortex-a8 2>&1 | FileCheck %s
+; RUN: not llc < %s -march=arm -mcpu=cortex-a8 2>&1 | FileCheck %s
; Check for error message:
; CHECK: scalar-to-vector conversion failed, possible invalid constraint for vector type
Modified: llvm/trunk/test/CodeGen/ARM/indirect-reg-input.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/indirect-reg-input.ll?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/indirect-reg-input.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/indirect-reg-input.ll Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=arm -mcpu=cortex-a8 2>&1 | FileCheck %s
+; RUN: not llc < %s -march=arm -mcpu=cortex-a8 2>&1 | FileCheck %s
; Check for error message:
; CHECK: error: inline asm not supported yet: don't know how to handle tied indirect register inputs
Modified: llvm/trunk/test/CodeGen/R600/vertex-fetch-encoding.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/vertex-fetch-encoding.ll?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/R600/vertex-fetch-encoding.ll (original)
+++ llvm/trunk/test/CodeGen/R600/vertex-fetch-encoding.ll Wed Jul 3 11:41:29 2013
@@ -1,5 +1,5 @@
; RUN: llc < %s -march=r600 -show-mc-encoding -mcpu=barts | FileCheck --check-prefix=NI-CHECK %s
-; RUN: llc < %s -march=r600 -show-mc-encoding -mcpu=cayman | FileCheck --check-prefix=CM-CHECK %s
+; RUN: not llc < %s -march=r600 -show-mc-encoding -mcpu=cayman | FileCheck --check-prefix=CM-CHECK %s
; NI-CHECK: @vtx_fetch32
; NI-CHECK: VTX_READ_32 T[[GPR:[0-9]]].X, T[[GPR]].X, 0 ; encoding: [0x40,0x01,0x0[[GPR]],0x10,0x0[[GPR]],0xf0,0x5f,0x13,0x00,0x00,0x08,0x00
Modified: llvm/trunk/test/CodeGen/X86/nosse-error1.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/nosse-error1.ll?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/nosse-error1.ll (original)
+++ llvm/trunk/test/CodeGen/X86/nosse-error1.ll Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=x86-64 -mattr=-sse 2>&1 | FileCheck --check-prefix NOSSE %s
+; RUN: not llc < %s -march=x86-64 -mattr=-sse 2>&1 | FileCheck --check-prefix NOSSE %s
; RUN: llc < %s -march=x86-64 | FileCheck %s
; NOSSE: {{SSE register return with SSE disabled}}
Modified: llvm/trunk/test/CodeGen/X86/nosse-error2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/nosse-error2.ll?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/nosse-error2.ll (original)
+++ llvm/trunk/test/CodeGen/X86/nosse-error2.ll Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=x86 -mcpu=i686 -mattr=-sse 2>&1 | FileCheck --check-prefix NOSSE %s
+; RUN: not llc < %s -march=x86 -mcpu=i686 -mattr=-sse 2>&1 | FileCheck --check-prefix NOSSE %s
; RUN: llc < %s -march=x86 -mcpu=i686 -mattr=+sse | FileCheck %s
; NOSSE: {{SSE register return with SSE disabled}}
Modified: llvm/trunk/test/FileCheck/check-not-diaginfo.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FileCheck/check-not-diaginfo.txt?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/FileCheck/check-not-diaginfo.txt (original)
+++ llvm/trunk/test/FileCheck/check-not-diaginfo.txt Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-; RUN: FileCheck -input-file %s %s 2>&1 | FileCheck -check-prefix DIAG %s
+; RUN: not FileCheck -input-file %s %s 2>&1 | FileCheck -check-prefix DIAG %s
CHECK-NOT: test
Modified: llvm/trunk/test/MC/AArch64/elf-objdump.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/AArch64/elf-objdump.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/AArch64/elf-objdump.s (original)
+++ llvm/trunk/test/MC/AArch64/elf-objdump.s Wed Jul 3 11:41:29 2013
@@ -1,5 +1,5 @@
// 64 bit little endian
-// RUN: llvm-mc -filetype=obj -triple aarch64-none-linux-gnu %s -o - | llvm-objdump -d
+// RUN: llvm-mc -filetype=obj -triple aarch64-none-linux-gnu %s -o - | llvm-objdump -d -
// We just want to see if llvm-objdump works at all.
// CHECK: .text
Modified: llvm/trunk/test/MC/AArch64/gicv3-regs-diagnostics.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/AArch64/gicv3-regs-diagnostics.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/AArch64/gicv3-regs-diagnostics.s (original)
+++ llvm/trunk/test/MC/AArch64/gicv3-regs-diagnostics.s Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-// RUN: llvm-mc -triple aarch64-none-linux-gnu < %s 2>&1 | FileCheck %s
+// RUN: not llvm-mc -triple aarch64-none-linux-gnu < %s 2>&1 | FileCheck %s
// Write-only
mrs x10, icc_eoir1_el1
Modified: llvm/trunk/test/MC/AArch64/trace-regs-diagnostics.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/AArch64/trace-regs-diagnostics.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/AArch64/trace-regs-diagnostics.s (original)
+++ llvm/trunk/test/MC/AArch64/trace-regs-diagnostics.s Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-// RUN: llvm-mc -triple aarch64-none-linux-gnu < %s 2>&1 | FileCheck %s
+// RUN: not llvm-mc -triple aarch64-none-linux-gnu < %s 2>&1 | FileCheck %s
// Write-only
mrs x12, trcoslar
mrs x10, trclar
Modified: llvm/trunk/test/MC/ARM/arm-thumb-cpus.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ARM/arm-thumb-cpus.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/ARM/arm-thumb-cpus.s (original)
+++ llvm/trunk/test/MC/ARM/arm-thumb-cpus.s Wed Jul 3 11:41:29 2013
@@ -1,9 +1,9 @@
-@ RUN: llvm-mc -show-encoding -arch=arm < %s 2>&1 | FileCheck %s --check-prefix=CHECK-ARM-ONLY
+@ RUN: not llvm-mc -show-encoding -arch=arm < %s 2>&1 | FileCheck %s --check-prefix=CHECK-ARM-ONLY
@ RUN: llvm-mc -show-encoding -triple=armv4t < %s 2>&1| FileCheck %s --check-prefix=CHECK-ARM-THUMB
@ RUN: llvm-mc -show-encoding -arch=arm -mcpu=cortex-a15 < %s 2>&1| FileCheck %s --check-prefix=CHECK-ARM-THUMB
-@ RUN: llvm-mc -show-encoding -arch=arm -mcpu=cortex-m3 < %s 2>&1 | FileCheck %s --check-prefix=CHECK-THUMB-ONLY
-@ RUN: llvm-mc -show-encoding -triple=armv7m < %s 2>&1 | FileCheck %s --check-prefix=CHECK-THUMB-ONLY
-@ RUN: llvm-mc -show-encoding -triple=armv6m < %s 2>&1 | FileCheck %s --check-prefix=CHECK-THUMB-ONLY
+@ RUN: not llvm-mc -show-encoding -arch=arm -mcpu=cortex-m3 < %s 2>&1 | FileCheck %s --check-prefix=CHECK-THUMB-ONLY
+@ RUN: not llvm-mc -show-encoding -triple=armv7m < %s 2>&1 | FileCheck %s --check-prefix=CHECK-THUMB-ONLY
+@ RUN: not llvm-mc -show-encoding -triple=armv6m < %s 2>&1 | FileCheck %s --check-prefix=CHECK-THUMB-ONLY
@ Make sure correct diagnostics are given for CPUs without support for
@ one or other of the execution states.
Modified: llvm/trunk/test/MC/ARM/arm-thumb-trustzone.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ARM/arm-thumb-trustzone.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/ARM/arm-thumb-trustzone.s (original)
+++ llvm/trunk/test/MC/ARM/arm-thumb-trustzone.s Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-@ RUN: llvm-mc -triple=thumbv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=-trustzone < %s | FileCheck %s -check-prefix=NOTZ
+@ RUN: not llvm-mc -triple=thumbv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=-trustzone < %s | FileCheck %s -check-prefix=NOTZ
@ RUN: llvm-mc -triple=thumbv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=trustzone < %s | FileCheck %s -check-prefix=TZ
.syntax unified
Modified: llvm/trunk/test/MC/ARM/arm-trustzone.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ARM/arm-trustzone.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/ARM/arm-trustzone.s (original)
+++ llvm/trunk/test/MC/ARM/arm-trustzone.s Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-@ RUN: llvm-mc -triple=armv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=-trustzone < %s | FileCheck %s -check-prefix=NOTZ
+@ RUN: not llvm-mc -triple=armv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=-trustzone < %s | FileCheck %s -check-prefix=NOTZ
@ RUN: llvm-mc -triple=armv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=trustzone < %s | FileCheck %s -check-prefix=TZ
.syntax unified
Modified: llvm/trunk/test/MC/ARM/eh-directive-fnend-diagnostics.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ARM/eh-directive-fnend-diagnostics.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/ARM/eh-directive-fnend-diagnostics.s (original)
+++ llvm/trunk/test/MC/ARM/eh-directive-fnend-diagnostics.s Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-@ RUN: llvm-mc %s -triple=armv7-unknown-linux-gnueabi \
+@ RUN: not llvm-mc %s -triple=armv7-unknown-linux-gnueabi \
@ RUN: -filetype=obj -o /dev/null 2>&1 | FileCheck %s
@ Check the diagnostics for mismatched .fnend directive
Modified: llvm/trunk/test/MC/ARM/eh-directive-fnstart-diagnostics.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ARM/eh-directive-fnstart-diagnostics.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/ARM/eh-directive-fnstart-diagnostics.s (original)
+++ llvm/trunk/test/MC/ARM/eh-directive-fnstart-diagnostics.s Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-@ RUN: llvm-mc %s -triple=armv7-unknown-linux-gnueabi \
+@ RUN: not llvm-mc %s -triple=armv7-unknown-linux-gnueabi \
@ RUN: -filetype=obj -o /dev/null 2>&1 | FileCheck %s
@ Check the diagnostics for the mismatched .fnstart directives.
Modified: llvm/trunk/test/MC/ARM/invalid-hint-arm.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ARM/invalid-hint-arm.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/ARM/invalid-hint-arm.s (original)
+++ llvm/trunk/test/MC/ARM/invalid-hint-arm.s Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-@ RUN: llvm-mc -triple=armv7-apple-darwin -mcpu=cortex-a8 < %s 2>&1 | FileCheck %s
+@ RUN: not llvm-mc -triple=armv7-apple-darwin -mcpu=cortex-a8 < %s 2>&1 | FileCheck %s
hint #5
hint #100
Modified: llvm/trunk/test/MC/ARM/invalid-hint-thumb.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ARM/invalid-hint-thumb.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/ARM/invalid-hint-thumb.s (original)
+++ llvm/trunk/test/MC/ARM/invalid-hint-thumb.s Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-@ RUN: llvm-mc -triple=thumbv7-apple-darwin -mcpu=cortex-a8 < %s 2>&1 | FileCheck %s
+@ RUN: not llvm-mc -triple=thumbv7-apple-darwin -mcpu=cortex-a8 < %s 2>&1 | FileCheck %s
hint #5
hint.w #5
Modified: llvm/trunk/test/MC/AsmParser/align_invalid.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/AsmParser/align_invalid.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/AsmParser/align_invalid.s (original)
+++ llvm/trunk/test/MC/AsmParser/align_invalid.s Wed Jul 3 11:41:29 2013
@@ -1,5 +1,5 @@
-# RUN: llvm-mc -triple i386-linux-gnu < %s 2>&1 | FileCheck %s -check-prefix=ELF
-# RUN: llvm-mc -triple i386-apple-darwin < %s 2>&1 | FileCheck %s -check-prefix=DARWIN
+# RUN: not llvm-mc -triple i386-linux-gnu < %s 2>&1 | FileCheck %s -check-prefix=ELF
+# RUN: not llvm-mc -triple i386-apple-darwin < %s 2>&1 | FileCheck %s -check-prefix=DARWIN
.align 3
# ELF: error: alignment must be a power of 2
Modified: llvm/trunk/test/MC/AsmParser/directive_align.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/AsmParser/directive_align.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/AsmParser/directive_align.s (original)
+++ llvm/trunk/test/MC/AsmParser/directive_align.s Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -triple i386-apple-darwin9 %s | FileCheck %s
+# RUN: not llvm-mc -triple i386-apple-darwin9 %s | FileCheck %s
# CHECK: TEST0:
# CHECK: .align 1
Modified: llvm/trunk/test/MC/AsmParser/macros-darwin.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/AsmParser/macros-darwin.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/AsmParser/macros-darwin.s (original)
+++ llvm/trunk/test/MC/AsmParser/macros-darwin.s Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-// RUN: not llvm-mc -triple i386-apple-darwin10 %s 2> %t.err | FileCheck %s
+// RUN: llvm-mc -triple i386-apple-darwin10 %s | FileCheck %s
.macro test1
.globl "$0 $1 $2 $$3 $n"
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=185554&r1=185553&r2=185554&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 Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
+# RUN: not 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/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=185554&r1=185553&r2=185554&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 Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
+# RUN: not 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/bundle-lock-option-error.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/X86/AlignedBundling/bundle-lock-option-error.s?rev=185554&r1=185553&r2=185554&view=diff
==============================================================================
--- llvm/trunk/test/MC/X86/AlignedBundling/bundle-lock-option-error.s (original)
+++ llvm/trunk/test/MC/X86/AlignedBundling/bundle-lock-option-error.s Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
+# RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
# Missing .bundle_align_mode argument
# CHECK: error: invalid option
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=185554&r1=185553&r2=185554&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 Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
+# RUN: not 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=185554&r1=185553&r2=185554&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 Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
+# RUN: not 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=185554&r1=185553&r2=185554&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 Wed Jul 3 11:41:29 2013
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
+# RUN: not 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