cpp11/stress.zsh
2012-05-25 08:55:29 -06:00

12 lines
123 B
Bash
Executable File

#!/bin/zsh
while true
do
./thread2
if [[ $? != 0 ]]
then
break
fi
done
echo "there was a problem"