File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ travis_time_start install # Use this to install any prerequisites or dependencie
4747cd ${HOME}
4848[ -e jskeus ] || git clone http://github.com/euslisp/jskeus jskeus
4949ln -s $CI_SOURCE_PATH jskeus/eus
50+ ln -s ` pwd` /jskeus/irteus jskeus/eus/irteus
5051travis_time_end
5152
5253travis_time_start script.make # All commands must exit with code 0 on success. Anything else is considered failure.
@@ -60,9 +61,9 @@ source bashrc.eus
6061export DISPLAY=
6162set +e
6263if [[ " ` uname -m` " == " arm" * || " ` uname -m` " == " aarch" * ]]; then
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 ]
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
6465else
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 ]
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
6667fi
6768travis_time_end
6869
You can’t perform that action at this time.
0 commit comments