Skip to content

Commit bd4eec7

Browse files
committed
disable GC heap OOM test on non-64-bit targets
1 parent 763444e commit bd4eec7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/all/gc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,7 @@ fn drc_traces_the_correct_number_of_gc_refs_in_arrays() -> Result<()> {
12371237
// exercises growing the GC heap and that we configure compilation tunables and
12381238
// runtime memories backing GC heaps correctly.
12391239
#[test]
1240-
#[cfg_attr(miri, ignore)]
1240+
#[cfg_attr(any(miri, not(target_pointer_width = "64")), ignore)]
12411241
fn gc_heap_oom() -> Result<()> {
12421242
if std::env::var("WASMTIME_TEST_NO_HOG_MEMORY").is_ok() {
12431243
return Ok(());

0 commit comments

Comments
 (0)