summaryrefslogtreecommitdiff
path: root/other/stress.sh
blob: 4856b1a1ffabc18a9692e153c91c2611d817930b (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
	./a2.out < input > out2     # execute ./a2.out
	diff out out2 || break
done