Skip to content

Commit 1a82928

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ 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 ] || exit 1
6464
else
65-
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 ]
65+
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 ] || exit 1
6666
fi
6767
travis_time_end
6868

0 commit comments

Comments
 (0)