cross_compile: Fix running test

This commit is contained in:
Mizux Seiha
2021-04-06 19:03:39 +02:00
parent 11700dd10b
commit 6ccaa2c568

View File

@@ -222,13 +222,13 @@ function run_test() {
set -x
case ${PROJECT} in
glop)
"${RUN_CMD}" bin/simple_glop_program ;;
${RUN_CMD} bin/simple_glop_program ;;
or-tools)
for test_binary in \
"${BUILD_DIR}"/bin/simple_* \
"${BUILD_DIR}"/bin/*tsp* \
"${BUILD_DIR}"/bin/*vrp*; do
"${RUN_CMD}" "${test_binary}"
${RUN_CMD} "${test_binary}"
done
;;
*)