Skip to content

Commit 996d9dc

Browse files
committed
extend benchmark timeout as a test
1 parent 34c39ec commit 996d9dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hyperlight_host/benches/benchmarks.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fn guest_call_benchmark(c: &mut Criterion) {
7777
let mut config = SandboxConfiguration::default();
7878
config.set_input_data_size(2 * SIZE + (1024 * 1024)); // 2 * SIZE + 1 MB, to allow 1MB for the rest of the serialized function call
7979
config.set_heap_size(SIZE as u64 * 15);
80-
config.set_max_execution_time(Duration::from_secs(10));
80+
config.set_max_execution_time(Duration::from_secs(30));
8181

8282
let sandbox = UninitializedSandbox::new(
8383
GuestBinary::FilePath(simple_guest_as_string().unwrap()),

0 commit comments

Comments
 (0)