ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/cas_test/compare/vasy
Revision: 667
Committed: Mon May 11 20:03:55 2015 UTC (10 years ago) by francois
File size: 1092 byte(s)
Log Message:
resolution bug de double à double precision 

File Contents

# User Rev Content
1 francois 472 #!/bin/bash
2    
3     function executer
4     {
5     $*
6     VAR=$?
7     if (( $VAR )) ; then
8     STATUSTXT="ERREUR dans les tests";
9     STAT=$VAR;
10     fi
11     }
12     CHEMINCOMPILE=../../exe/app
13     STATUSTXT="Test sans ERREUR"
14     echo "*********************************"
15 francois 667 echo "Exemple de comparaison 1"
16 francois 472 echo "*********************************"
17     STAT=$?
18     executer $CHEMINCOMPILE/mgoperation/mgoperation.exe -stepocc -in ejectorA.step -importtriangulation
19     executer $CHEMINCOMPILE/mgoperation/mgoperation.exe -stepocc -in ejectorB.step -importtriangulation
20     executer $CHEMINCOMPILE/compare/compare.exe -inA ejectorA.magic -inB ejectorB.magic -out ejector.cmp
21 francois 667 echo "*********************************"
22     echo "Exemple de comparaison 2"
23     echo "*********************************"
24     executer $CHEMINCOMPILE/mgoperation/mgoperation.exe -stepocc -in hookA.step -importtriangulation
25     executer $CHEMINCOMPILE/mgoperation/mgoperation.exe -stepocc -in hookB.step -importtriangulation
26     executer $CHEMINCOMPILE/compare/compare.exe -inA hookA.magic -inB hookB.magic -out hook.cmp
27 francois 472 echo "**********************"
28     echo $STATUSTXT
29     echo "**********************"
30     exit $STAT
31    
32    
33    
34    

Properties

Name Value
svn:executable *