Skip to content

Commit 959df9d

Browse files
committed
.travis.sh : armhf could not pass eus64 check
1 parent af13431 commit 959df9d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.travis.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,14 @@ source bashrc.eus
6161
export DISPLAY=
6262
set +e
6363
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
6565
else
6666
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
6767
fi
6868

69-
if [ "$TRAVIS_OS_NAME" != "osx" ]; then
69+
if [[ "$TRAVIS_OS_NAME" == "osx" || "`uname -m`" == "arm"* ]]; then
70+
uname -a
71+
else
7072
make -C eus/contrib/eus64-check/ || exit 1 # check eus64-check
7173
fi
7274
travis_time_end

0 commit comments

Comments
 (0)