Skip to content

Commit

Permalink
CI: Disable some extremely slow MIRI tests (#8618)
Browse files Browse the repository at this point in the history
* prtest:full

* Disable some extremely slow MIRI tests
  • Loading branch information
fitzgen authored May 14, 2024
1 parent a11837b commit 4df1db5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/all/defaults.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use wasmtime::*;

#[test]
#[cfg_attr(miri, ignore)]
fn test_tail_call_default() -> Result<()> {
for (expected, cfg) in [
(
Expand Down
7 changes: 7 additions & 0 deletions tests/all/externals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,7 @@ fn dummy_funcs_and_subtypes(
}

#[test]
#[cfg_attr(miri, ignore)]
fn new_global_func_subtyping() {
let engine = Engine::default();
let mut store = Store::new(&engine, ());
Expand Down Expand Up @@ -529,6 +530,7 @@ fn new_global_func_subtyping() {
}

#[test]
#[cfg_attr(miri, ignore)]
fn global_set_func_subtyping() {
let engine = Engine::default();
let mut store = Store::new(&engine, ());
Expand Down Expand Up @@ -565,6 +567,7 @@ fn global_set_func_subtyping() {
}

#[test]
#[cfg_attr(miri, ignore)]
fn new_table_func_subtyping() {
let engine = Engine::default();
let mut store = Store::new(&engine, ());
Expand Down Expand Up @@ -595,6 +598,7 @@ fn new_table_func_subtyping() {
}

#[test]
#[cfg_attr(miri, ignore)]
fn table_set_func_subtyping() {
let engine = Engine::default();
let mut store = Store::new(&engine, ());
Expand Down Expand Up @@ -637,6 +641,7 @@ fn table_set_func_subtyping() {
}

#[test]
#[cfg_attr(miri, ignore)]
fn table_grow_func_subtyping() {
let engine = Engine::default();
let mut store = Store::new(&engine, ());
Expand Down Expand Up @@ -680,6 +685,7 @@ fn table_grow_func_subtyping() {
}

#[test]
#[cfg_attr(miri, ignore)]
fn table_fill_func_subtyping() {
let engine = Engine::default();
let mut store = Store::new(&engine, ());
Expand Down Expand Up @@ -719,6 +725,7 @@ fn table_fill_func_subtyping() {
}

#[test]
#[cfg_attr(miri, ignore)]
fn table_copy_func_subtyping() {
let _ = env_logger::try_init();

Expand Down

0 comments on commit 4df1db5

Please sign in to comment.