summaryrefslogtreecommitdiff
path: root/other/stress.sh
blob: 39424ce8e4fee0c53210d71644c29af7353c8e34 (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