cpp11/stress.zsh

12 lines
123 B
Bash
Raw Normal View History

2012-05-25 07:55:29 -07:00
#!/bin/zsh
while true
do
./thread2
if [[ $? != 0 ]]
then
break
fi
done
echo "there was a problem"