#!/bin/sh
echo "" >results
for i in 1 2 3 4 5 6 7 8 9 10
do
   echo $i
   erl -boot start_clean -noshell -smp +S $i \
       -s ptests tests $i >> results
done

