Fix up test

This commit is contained in:
Michael Vines 2020-04-25 09:33:44 -07:00
parent 05acd4b29f
commit c9d6c39c31
2 changed files with 4 additions and 3 deletions

View File

@ -116,7 +116,6 @@ for v in "${otherVersions[@]}"; do
$SOLANA_BIN/solana-validator \
--ledger $ledger \
--no-snapshot-fetch \
--snapshot-interval-slots 10 \
--entrypoint 127.0.0.1:8001 \
-o - 2>&1 | tee $logDir/$v.log \
"
@ -125,9 +124,9 @@ for v in "${otherVersions[@]}"; do
--num-nodes-exactly $nodeCount \
--timeout 30
# Wait for it to make a root
# Wait for it to make a snapshot root
SECONDS=
while [[ ! -f $ledger/snapshot.tar.bz2 ]]; do
while [[ ! -d $ledger/snapshot ]]; do
sleep 5
if [[ $SECONDS -gt 60 ]]; then
echo "Error: validator failed to create a snapshot"

View File

@ -1,3 +1,5 @@
steps:
- command: "system-test/abi-testcases/mixed-validator-test.sh"
label: "Mixed Validator Test"
artifact_paths:
- "system-test/abi-testcases/logs/*"