File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -61,12 +61,14 @@ source bashrc.eus
61
61
export DISPLAY=
62
62
set +e
63
63
if [[ " ` uname -m` " == " arm" * || " ` uname -m` " == " aarch" * ]]; then
64
- export EXIT_STATUS=0; for test_l in irteus/test/* .l; do [[ $test_l =~ geo.l| interpolator.l| irteus-demo.l| test-irt-motion.l| object.l| coords.l ]] && continue ; irteusgl $test_l ; export EXIT_STATUS=` expr $? + $EXIT_STATUS ` ; done ; echo " Exit status : $EXIT_STATUS " ; [ $EXIT_STATUS == 0 ] || exit 1
64
+ export EXIT_STATUS=0; for test_l in irteus/test/* .l; do [[ $test_l =~ geo.l| interpolator.l| irteus-demo.l| test-irt-motion.l| object.l| coords.l| bignum.l | mathtest.l ]] && continue ; irteusgl $test_l ; export EXIT_STATUS=` expr $? + $EXIT_STATUS ` ; done ; echo " Exit status : $EXIT_STATUS " ; [ $EXIT_STATUS == 0 ] || exit 1
65
65
else
66
66
export EXIT_STATUS=0; for test_l in irteus/test/* .l; do irteusgl $test_l ; export EXIT_STATUS=` expr $? + $EXIT_STATUS ` ; done ; echo " Exit status : $EXIT_STATUS " ; [ $EXIT_STATUS == 0 ] || exit 1
67
67
fi
68
68
69
- if [ " $TRAVIS_OS_NAME " != " osx" ]; then
69
+ if [[ " $TRAVIS_OS_NAME " == " osx" || " ` uname -m` " == " arm" * ]]; then
70
+ uname -a
71
+ else
70
72
make -C eus/contrib/eus64-check/ || exit 1 # check eus64-check
71
73
fi
72
74
travis_time_end
You can’t perform that action at this time.
0 commit comments