Lots of bug fixes, stable system, parallelized binary computes incorrect answer
[IRC.git] / Robust / src / Tests / mlp / 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 5)
7 do
8 echo 'running...'
9 ./testSingle.bin 10 >> resultsSingle.txt
10 ./testMulti.bin  10 >> resultsMulti.txt
11 ./testSingle.bin 25 >> resultsSingle.txt
12 ./testMulti.bin  25 >> resultsMulti.txt
13 ./testSingle.bin 125 >> resultsSingle.txt
14 ./testMulti.bin  125 >> resultsMulti.txt
15 ./testSingle.bin 1255 >> resultsSingle.txt
16 ./testMulti.bin  1255 >> resultsMulti.txt
17 done
18
19 echo 'Diffing results'
20 diff resultsSingle.txt resultsMulti.txt