[llvm] r346845 - [WebAssembly] Make sure event-section XFAILs for build options

Heejin Ahn via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 14 02:11:22 PST 2018


Author: aheejin
Date: Wed Nov 14 02:11:22 2018
New Revision: 346845

URL: http://llvm.org/viewvc/llvm-project?rev=346845&view=rev
Log:
[WebAssembly] Make sure event-section XFAILs for build options

rL346840 temporarily marked event-section.ll as XFAIL because it was
failing for builds with LLVM_ENABLE_EXPENSIVE_CHECKS turned on, but
to make sure it XFAILs even without LLVM_ENABLE_EXPENSIVE_CHECKS on we
need this `-verify-machineinstrs` flag, which was missing in the
previous commit.

Modified:
    llvm/trunk/test/MC/WebAssembly/event-section.ll

Modified: llvm/trunk/test/MC/WebAssembly/event-section.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/WebAssembly/event-section.ll?rev=346845&r1=346844&r2=346845&view=diff
==============================================================================
--- llvm/trunk/test/MC/WebAssembly/event-section.ll (original)
+++ llvm/trunk/test/MC/WebAssembly/event-section.ll Wed Nov 14 02:11:22 2018
@@ -1,6 +1,6 @@
 ; XFAIL: *
-; RUN: llc -filetype=obj -exception-model=wasm -mattr=+exception-handling %s -o - | obj2yaml | FileCheck %s
-; RUN: llc -filetype=obj -exception-model=wasm -mattr=+exception-handling %s -o - | llvm-readobj -s | FileCheck -check-prefix=SEC %s
+; RUN: llc -filetype=obj -exception-model=wasm -mattr=+exception-handling -verify-machineinstrs %s -o - | obj2yaml | FileCheck %s
+; RUN: llc -filetype=obj -exception-model=wasm -mattr=+exception-handling -verify-machineinstrs %s -o - | llvm-readobj -s | FileCheck -check-prefix=SEC %s
 
 target triple = "wasm32-unknown-unknown"
 




More information about the llvm-commits mailing list