Some tests that are helping with SESE garbage collection, incidentally the mlp regres...
[IRC.git] / Robust / src / Tests / oooJava / regression / runTests
1 echo 'Each single/multi output line pair should be identical'
2
3 echo '' > resultsSingle.txt
4 echo '' > resultsMulti.txt
5
6 for i in $(seq 3)
7 do
8 echo 'running...'
9 ./testSingle.bin $[ i      ] >> resultsSingle.txt
10 ./testMulti.bin  $[ i      ] >> resultsMulti.txt
11 ./testSingle.bin $[ i*7    ] >> resultsSingle.txt
12 ./testMulti.bin  $[ i*7    ] >> resultsMulti.txt
13 #./testSingle.bin $[ 50+i*9 ] >> resultsSingle.txt
14 #./testMulti.bin  $[ 50+i*9 ] >> resultsMulti.txt
15 done
16
17 echo 'Diffing results'
18 diff resultsSingle.txt resultsMulti.txt