Variable result table pruning is buggy, remove for now, also adding improved tests...
[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 20)
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*7 ] >> resultsSingle.txt
14 ./testMulti.bin  $[ 50+i*7 ] >> resultsMulti.txt
15 done
16
17 echo 'Diffing results'
18 diff resultsSingle.txt resultsMulti.txt