Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ function test_cmds {
i=0
$NARGO test --list-tests --silence-warnings | sort | while read -r package test; do
# We assume there are 8 txe's running.
port=$((45730 + (i++ % ${NUM_TXES:-1})))
# Default to 8 txe instances if NUM_TXES is not set; this matches the comment above
port=$((45730 + (i++ % ${NUM_TXES:-8})))
echo "$hash noir-projects/scripts/run_test.sh aztec-nr $package $test $port"
done
}
Expand Down