Skip to content

Commit 359df26

Browse files
committed
.travis.yaml: run more test on arm
1 parent c13a3ce commit 359df26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ source bashrc.eus
6060
export DISPLAY=
6161
set +e
6262
if [[ "`uname -m`" == "arm"* || "`uname -m`" == "aarch"* ]]; then
63-
export EXIT_STATUS=0; for test_l in irteus/test/geo.l; do irteusgl $test_l; export EXIT_STATUS=`expr $? + 1`; done;echo "Exit status : $EXIT_STATUS"; [ $EXIT_STATUS == 0 ]
63+
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 $? + 1`; done;echo "Exit status : $EXIT_STATUS"; [ $EXIT_STATUS == 0 ]
6464
else
6565
export EXIT_STATUS=0; for test_l in irteus/test/*.l; do irteusgl $test_l; export EXIT_STATUS=`expr $? + 1`; done;echo "Exit status : $EXIT_STATUS"; [ $EXIT_STATUS == 0 ]
6666
fi

0 commit comments

Comments
 (0)