diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-06-11 06:52:58 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-06-11 06:52:58 +0000 |
commit | c139672407b6ad8d2929fd0c52591216fd32b4b6 (patch) | |
tree | 3b040e9c39c1dc3b68f1d5f52a7529c3be6a1301 /test | |
parent | 6915854dd27bfedd2bc261cb19b148557670b98c (diff) | |
download | external_llvm-c139672407b6ad8d2929fd0c52591216fd32b4b6.zip external_llvm-c139672407b6ad8d2929fd0c52591216fd32b4b6.tar.gz external_llvm-c139672407b6ad8d2929fd0c52591216fd32b4b6.tar.bz2 |
Tweak a couple of tests on win32 hosts with +Asserts.
- Don't use assert(0), or tests may pass or fail according to assertions.
- For now, The tests are marked as XFAIL for win32 hosts.
FIXME: Could we avoid XFAIL to specify triple in the RUN lines?
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183728 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/MC/ARM/arm-thumb-cpus-default.s | 3 | ||||
-rw-r--r-- | test/MC/ARM/arm-thumb-cpus.s | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/test/MC/ARM/arm-thumb-cpus-default.s b/test/MC/ARM/arm-thumb-cpus-default.s index 636ee3c..040039f 100644 --- a/test/MC/ARM/arm-thumb-cpus-default.s +++ b/test/MC/ARM/arm-thumb-cpus-default.s @@ -5,6 +5,9 @@ @ RUN: llvm-mc -show-encoding -triple=armv7m < %s | FileCheck %s --check-prefix=CHECK-THUMB-ONLY @ RUN: llvm-mc -show-encoding -triple=armv6m < %s | FileCheck %s --check-prefix=CHECK-THUMB-ONLY +@ FIXME: Could we avoid XFAIL to specify triple above? +@ XFAIL: cygwin,mingw32,win32 + @ Make sure the architecture chosen by LLVM defaults to a compatible @ ARM/Thumb mode. movs r0, r0 diff --git a/test/MC/ARM/arm-thumb-cpus.s b/test/MC/ARM/arm-thumb-cpus.s index c15e807..ea4e71a 100644 --- a/test/MC/ARM/arm-thumb-cpus.s +++ b/test/MC/ARM/arm-thumb-cpus.s @@ -5,6 +5,9 @@ @ 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 +@ FIXME: Could we avoid XFAIL to specify triple above? +@ XFAIL: cygwin,mingw32,win32 + @ Make sure correct diagnostics are given for CPUs without support for @ one or other of the execution states. .thumb |