machinst x64: add testing to the CI;
This commit is contained in:
@@ -32,6 +32,7 @@ fn test_trap_return() -> Result<()> {
|
||||
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1642)
|
||||
#[cfg_attr(feature = "experimental_x64", ignore)] // FIXME(#2078)
|
||||
fn test_trap_trace() -> Result<()> {
|
||||
let store = Store::default();
|
||||
let wat = r#"
|
||||
@@ -74,6 +75,7 @@ fn test_trap_trace() -> Result<()> {
|
||||
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1642)
|
||||
#[cfg_attr(feature = "experimental_x64", ignore)] // FIXME(#2078)
|
||||
fn test_trap_trace_cb() -> Result<()> {
|
||||
let store = Store::default();
|
||||
let wat = r#"
|
||||
@@ -110,6 +112,7 @@ fn test_trap_trace_cb() -> Result<()> {
|
||||
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1642)
|
||||
#[cfg_attr(feature = "experimental_x64", ignore)] // FIXME(#2078)
|
||||
fn test_trap_stack_overflow() -> Result<()> {
|
||||
let store = Store::default();
|
||||
let wat = r#"
|
||||
@@ -142,6 +145,7 @@ fn test_trap_stack_overflow() -> Result<()> {
|
||||
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1642)
|
||||
#[cfg_attr(feature = "experimental_x64", ignore)] // FIXME(#2078)
|
||||
fn trap_display_pretty() -> Result<()> {
|
||||
let store = Store::default();
|
||||
let wat = r#"
|
||||
@@ -174,6 +178,7 @@ wasm backtrace:
|
||||
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1642)
|
||||
#[cfg_attr(feature = "experimental_x64", ignore)] // FIXME(#2078)
|
||||
fn trap_display_multi_module() -> Result<()> {
|
||||
let store = Store::default();
|
||||
let wat = r#"
|
||||
@@ -219,6 +224,7 @@ wasm backtrace:
|
||||
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1642)
|
||||
#[cfg_attr(feature = "experimental_x64", ignore)] // FIXME(#2078)
|
||||
fn trap_start_function_import() -> Result<()> {
|
||||
let store = Store::default();
|
||||
let binary = wat::parse_str(
|
||||
@@ -246,6 +252,7 @@ fn trap_start_function_import() -> Result<()> {
|
||||
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1642)
|
||||
#[cfg_attr(feature = "experimental_x64", ignore)] // FIXME(#2078)
|
||||
fn rust_panic_import() -> Result<()> {
|
||||
let store = Store::default();
|
||||
let binary = wat::parse_str(
|
||||
@@ -291,6 +298,7 @@ fn rust_panic_import() -> Result<()> {
|
||||
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1642)
|
||||
#[cfg_attr(feature = "experimental_x64", ignore)] // FIXME(#2078)
|
||||
fn rust_panic_start_function() -> Result<()> {
|
||||
let store = Store::default();
|
||||
let binary = wat::parse_str(
|
||||
@@ -325,6 +333,7 @@ fn rust_panic_start_function() -> Result<()> {
|
||||
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1642)
|
||||
#[cfg_attr(feature = "experimental_x64", ignore)] // FIXME(#2078)
|
||||
fn mismatched_arguments() -> Result<()> {
|
||||
let store = Store::default();
|
||||
let binary = wat::parse_str(
|
||||
@@ -357,6 +366,7 @@ fn mismatched_arguments() -> Result<()> {
|
||||
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1642)
|
||||
#[cfg_attr(feature = "experimental_x64", ignore)] // FIXME(#2078)
|
||||
fn call_signature_mismatch() -> Result<()> {
|
||||
let store = Store::default();
|
||||
let binary = wat::parse_str(
|
||||
@@ -388,6 +398,7 @@ fn call_signature_mismatch() -> Result<()> {
|
||||
|
||||
#[test]
|
||||
#[cfg_attr(target_arch = "aarch64", ignore)] // FIXME(#1642)
|
||||
#[cfg_attr(feature = "experimental_x64", ignore)] // FIXME(#2078)
|
||||
fn start_trap_pretty() -> Result<()> {
|
||||
let store = Store::default();
|
||||
let wat = r#"
|
||||
|
||||
Reference in New Issue
Block a user