1 |
francois |
472 |
#!/bin/bash |
2 |
|
|
|
3 |
francois |
1177 |
|
4 |
|
|
source ../fonction_bash.bash "TEST DE COMPARAISON" ../../exe/app |
5 |
|
|
|
6 |
|
|
|
7 |
|
|
|
8 |
|
|
STAT=$? |
9 |
francois |
472 |
echo "*********************************" |
10 |
francois |
667 |
echo "Exemple de comparaison 1" |
11 |
francois |
472 |
echo "*********************************" |
12 |
|
|
executer $CHEMINCOMPILE/mgoperation/mgoperation.exe -stepocc -in ejectorA.step -importtriangulation |
13 |
|
|
executer $CHEMINCOMPILE/mgoperation/mgoperation.exe -stepocc -in ejectorB.step -importtriangulation |
14 |
|
|
executer $CHEMINCOMPILE/compare/compare.exe -inA ejectorA.magic -inB ejectorB.magic -out ejector.cmp |
15 |
francois |
667 |
echo "*********************************" |
16 |
|
|
echo "Exemple de comparaison 2" |
17 |
|
|
echo "*********************************" |
18 |
|
|
executer $CHEMINCOMPILE/mgoperation/mgoperation.exe -stepocc -in hookA.step -importtriangulation |
19 |
|
|
executer $CHEMINCOMPILE/mgoperation/mgoperation.exe -stepocc -in hookB.step -importtriangulation |
20 |
|
|
executer $CHEMINCOMPILE/compare/compare.exe -inA hookA.magic -inB hookB.magic -out hook.cmp |
21 |
francois |
472 |
echo "**********************" |
22 |
francois |
1177 |
echo ${PWD##*/} |
23 |
francois |
472 |
echo $STATUSTXT |
24 |
|
|
echo "**********************" |
25 |
|
|
exit $STAT |
26 |
|
|
|
27 |
|
|
|
28 |
|
|
|
29 |
|
|
|