blob: d264c2afeda262d5b060a2ad73ce3dc5d7b55eb4 (
plain)
1
2
3
4
5
6
7
|
for i in {1..1000}; do
printf "\r$i"
python3 gen.py > input # generate test with gen.py
./a.out < input > out # execute ./a.out
./b.out < input > out2 # execute ./b.out
diff out out2 || break
done
|