summaryrefslogtreecommitdiff
path: root/other/stress.sh
blob: 657b173933542b4372493b3be52e3910a6cc1046 (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 ./a2.out
	diff out out2 || break
done