test(ef-tests): remove stack size increase (#6409)

This commit is contained in:
Alexey Shekhirin
2024-02-05 19:44:30 +00:00
committed by GitHub
parent 6c1263e000
commit 8ef88105ae

View File

@ -6,18 +6,7 @@ macro_rules! general_state_test {
($test_name:ident, $dir:ident) => {
#[test]
fn $test_name() {
// TODO: can be removed with revm call-loop support
// <https://github.com/paradigmxyz/reth/issues/5582>
std::thread::Builder::new()
.stack_size(
1024 * 1024 * 8, // 8MB
)
.spawn(move || {
BlockchainTests::new(format!("GeneralStateTests/{}", stringify!($dir))).run();
})
.unwrap()
.join()
.unwrap();
}
};
}