From 6703516cdb0ee1ec54330bb0b4de18f41ef4a348 Mon Sep 17 00:00:00 2001 From: StackOverflowExcept1on <109800286+StackOverflowExcept1on@users.noreply.github.com> Date: Wed, 25 Oct 2023 18:51:57 +0300 Subject: [PATCH] attempt to fix tests --- Cargo.lock | 2 +- utils/runtime-fuzzer/src/tests.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 14907b2c54d..fb47c87f443 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4827,7 +4827,7 @@ dependencies = [ [[package]] name = "gwasm-instrument" version = "0.2.1" -source = "git+https://github.com/StackOverflowExcept1on/wasm-instrument?branch=v0.2.1-sign-ext-stack-height#595872d8a52a8cc850ac771e3ba67ed20916f119" +source = "git+https://github.com/StackOverflowExcept1on/wasm-instrument?branch=v0.2.1-sign-ext-stack-height#f60f433858142f34eeafcf25baf479f8252427fa" dependencies = [ "gear-wasm", ] diff --git a/utils/runtime-fuzzer/src/tests.rs b/utils/runtime-fuzzer/src/tests.rs index f63df90251e..9ccfef36a7c 100644 --- a/utils/runtime-fuzzer/src/tests.rs +++ b/utils/runtime-fuzzer/src/tests.rs @@ -19,8 +19,8 @@ use crate::*; use proptest::prelude::*; -const MAX_GEAR_CALLS_BYTES: usize = 450_000; -const MIN_GEAR_CALLS_BYTES: usize = 350_000; +const MAX_GEAR_CALLS_BYTES: usize = 30_000_000; +const MIN_GEAR_CALLS_BYTES: usize = 25_000_000; #[test] fn proptest_input_validity() {