Skip to content

Commit

Permalink
Fix test_eosio.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
ksiazkowicz committed Apr 16, 2020
1 parent 3a53a52 commit b498d4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test_eosio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ while [ $x -lt $SAMPLE_SIZE ];
do
echo == Run $((x+1))/$SAMPLE_SIZE == >&2

docker-compose stop eos-testnet &> /dev/null
docker-compose stop &> /dev/null
docker-compose rm -f &> /dev/null
timestamp=$(date +"%s")
docker-compose up -d eos-testnet &> /dev/null
docker-compose up -d &> /dev/null
sleep 5

y=0
while [ $y -lt $RETRY_LIMIT ];
do
docker exec testnet cleos get table eosio eosio delband &> /dev/null
docker exec eos-testnet cleos get table eosio eosio delband &> /dev/null
if [ $? -eq 0 ];
then
break
Expand Down

0 comments on commit b498d4c

Please sign in to comment.