Skip to content

Commit a9c0c49

Browse files
attempt to bump a timeout in a noir test
1 parent c6c5460 commit a9c0c49

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

noir-projects/noir-protocol-circuits/bootstrap.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,12 @@ function build {
174174

175175
function test_cmds {
176176
$NARGO test --list-tests --silence-warnings | sort | while read -r package test; do
177-
echo "$circuits_hash noir-projects/scripts/run_test.sh noir-protocol-circuits $package $test"
177+
if [[ "$package" == "rollup_lib" && "$test" == "block_root::block_root_rollup_inputs::tests::correct_blobs_with_non_empty_fields" ]]; then
178+
# Set a custom timeout > 10m for this test.
179+
echo "$circuits_hash:TIMEOUT=15m noir-projects/scripts/run_test.sh noir-protocol-circuits $package $test"
180+
else
181+
echo "$circuits_hash noir-projects/scripts/run_test.sh noir-protocol-circuits $package $test"
182+
fi
178183
done
179184
# We don't blindly execute all circuits as some will have no `Prover.toml`.
180185
circuits_to_execute="

0 commit comments

Comments
 (0)