File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
noir-projects/noir-protocol-circuits Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,12 @@ function build {
174
174
175
175
function test_cmds {
176
176
$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
178
183
done
179
184
# We don't blindly execute all circuits as some will have no `Prover.toml`.
180
185
circuits_to_execute="
You can’t perform that action at this time.
0 commit comments