Whether tests that hog memory should be skipped.
()
| 101 | |
| 102 | /// Whether tests that hog memory should be skipped. |
| 103 | pub(crate) fn no_hog_memory() -> bool { |
| 104 | std::env::var("WASMTIME_TEST_NO_HOG_MEMORY").is_ok() |
| 105 | } |
| 106 | |
| 107 | /// Get the default pooling allocator configuration for tests, which is a |
| 108 | /// smaller pool than the normal default. |
no test coverage detected