Added same test as cgal_test

This commit is contained in:
Laurent Saboret 2006-03-03 10:09:51 +00:00
parent 165a7f2e3f
commit 5108d76708
1 changed files with 16 additions and 11 deletions

View File

@ -4,20 +4,25 @@
echo "***************************************************************"
./test_model.sh cube
./test_model.sh holes
./test_model.sh mannequin-devil
./test_model.sh mask_cone
./test_model.sh nefertiti
./test_model.sh rotor
./test_model.sh sphere966
./test_model.sh three_peaks
# ./test_model.sh cube
# ./test_model.sh holes
# ./test_model.sh mannequin-devil
# ./test_model.sh mask_cone
# ./test_model.sh nefertiti
# ./test_model.sh rotor
# ./test_model.sh sphere966
# ./test_model.sh three_peaks
echo "***************************************************************"
for tst in *_parameterization
for TST in Authalic_parameterization Simple_parameterization Taucs_parameterization Mesh_cutting_parameterization Square_border_parameterization polyhedron_ex_parameterization
do
echo " "
echo "*** $tst ***"
$tst `cat $tst.cmd`
echo "*** $TST ***"
# Find executable name (different on Windows and Unix)
[ -f ./release/$TST.exe ] && PARAM_APPLICATION="./release/$TST.exe"
[ -x ./$TST ] && PARAM_APPLICATION="./$TST"
$PARAM_APPLICATION `cat $TST.cmd`
done