SCM Repository
[diderot] Annotation of /trunk/test/run-tests.sh
Annotation of /trunk/test/run-tests.sh
Parent Directory
|
Revision Log
Revision 428 -
(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 : |
jhr |
409 |
echo "=================================================================="
|
9 : |
jhr |
396 |
echo "$DIDEROTC -log -DdataFile=../data/vox1.nrrd vr-MIP.diderot"
|
10 : |
|
|
$DIDEROTC -log -DdataFile=../data/vox1.nrrd vr-MIP.diderot || exit 1
|
11 : |
|
|
|
12 : |
jhr |
409 |
echo "=================================================================="
|
13 : |
jhr |
396 |
echo "$DIDEROTC -log -DdataFile=../data/vox1.nrrd vr-lite.diderot"
|
14 : |
|
|
$DIDEROTC -log -DdataFile=../data/vox1.nrrd vr-lite.diderot || exit 1
|
15 : |
|
|
|
16 : |
jhr |
409 |
echo "=================================================================="
|
17 : |
jhr |
428 |
echo "$DIDEROTC -log -DdataFile=../data/vox1.nrrd -DtxfFile=../data/dummy-txf-rgba.nrrd vr-phong.diderot"
|
18 : |
|
|
$DIDEROTC -log -DdataFile=../data/vox1.nrrd -DtxfFile=../data/dummy-txf-rgba.nrrd vr-phong.diderot || exit 1
|
19 : |
jhr |
396 |
|
20 : |
jhr |
409 |
echo "=================================================================="
|
21 : |
|
|
|