File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ would create a blinded route with a minHTLC greater than the actual payment
7373amount. Moreover remove strict correlation between min_cltv_delta and the
7474blinded path expiry.
7575
76+ * [ Fixed] ( https://github.com/lightningnetwork/lnd/pull/9021 ) an issue with some
77+ command-line arguments not being passed when running ` make itest-parallel ` .
78+
7679# New Features
7780## Functional Enhancements
7881## RPC Additions
Original file line number Diff line number Diff line change 33# Get all the variables.
44PROCESSES=$1
55TRANCHES=$2
6- TEST_FLAGS=$3
7- ITEST_FLAGS=$4
6+
7+ # Here we also shift 2 times and get the rest of our flags to pass on in $@.
8+ shift 2
89
910# Create a variable to hold the final exit code.
1011exit_code=0
1112
1213# Run commands using xargs in parallel and capture their PIDs
1314pids=()
1415for (( i= 0 ; i< PROCESSES; i++ )) ; do
15- scripts/itest_part.sh $i $TRANCHES $TEST_FLAGS $ITEST_FLAGS &
16+ scripts/itest_part.sh $i $TRANCHES $@ &
1617 pids+=($! )
1718done
1819
You can’t perform that action at this time.
0 commit comments