mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-27 00:35:18 +00:00
5 lines
157 B
Bash
5 lines
157 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for i in {1..10}; do
|
||
|
go test ./app -run TestAppStateDeterminism -Enabled -Commit -NumBlocks=100 -BlockSize=200 -Seed ${i} -v -timeout 24h
|
||
|
done
|