From 00d65eccafc1cd03f5ffc5bc550e3c0cb7c92352 Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Wed, 15 Sep 2021 16:19:51 -0700 Subject: [PATCH] does this one hang on qemu too? idk --- tests/all/limits.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/all/limits.rs b/tests/all/limits.rs index 2c65266d49..14c0704113 100644 --- a/tests/all/limits.rs +++ b/tests/all/limits.rs @@ -413,6 +413,9 @@ impl ResourceLimiter for MemoryGrowFailureDetector { #[test] fn custom_limiter_detect_grow_failure() -> Result<()> { + if std::env::var("WASMTIME_TEST_NO_HOG_MEMORY").is_ok() { + return Ok(()); + } let mut config = Config::new(); config.allocation_strategy(InstanceAllocationStrategy::Pooling { strategy: PoolingAllocationStrategy::NextAvailable,