SCM Repository
[diderot] Annotation of /trunk/test/run-tests.sh
Annotation of /trunk/test/run-tests.sh
Parent Directory
|
Revision Log
Revision 396 -
(view)
(download)
(as text)
1 : |
jhr |
396 |
#!/bin/sh
|
2 : |
|
|
#
|
3 : |
|
|
# a script to run the diderot compiler on a few examples
|
4 : |
|
|
#
|
5 : |
|
|
|
6 : |
|
|
DIDEROTC=../bin/diderotc
|
7 : |
|
|
|
8 : |
|
|
echo "$DIDEROTC -log -DdataFile=../data/vox1.nrrd vr-MIP.diderot"
|
9 : |
|
|
$DIDEROTC -log -DdataFile=../data/vox1.nrrd vr-MIP.diderot || exit 1
|
10 : |
|
|
|
11 : |
|
|
echo "$DIDEROTC -log -DdataFile=../data/vox1.nrrd vr-lite.diderot"
|
12 : |
|
|
$DIDEROTC -log -DdataFile=../data/vox1.nrrd vr-lite.diderot || exit 1
|
13 : |
|
|
|
14 : |
|
|
echo "$DIDEROTC -log -DdataFile=../data/vox1.nrrd -DtxfFile=../data/txs.nrrd vr-phong.diderot"
|
15 : |
|
|
$DIDEROTC -log -DdataFile=../data/vox1.nrrd -DtxfFile=../data/txs.nrrd vr-phong.diderot || exit 1
|
16 : |
|
|
|