> Dawid promised me he will one day find the time to do it! :) I have it pretty high on my list of things to do in my spare time. The problem is twofold -- I have very few spare cycles at the moment and the problem is actually more complicated than it seems on the surface. I do have some ideas though.
Maybe if you have a shellscript that's generic enough, it's worth putting > under dev-tools? > The simplest string would be something that just calls ant test -Dtests.seed=`...` repeatedly with a different seed and checks for the output status. This is doable even in bash, as in: for i in `seq 1 100`; do seed=`printf "%X%X" $RANDOM $RANDOM` echo "Iteration $i, seed: $seed" # ant -Dtests.seed=$seed # check if $? indicates a failure and abort if so. done D.
