test: Fix argument values given to test.sh not being passed to Best

This commit is contained in:
Ethan P 2020-04-27 18:47:34 -07:00 committed by Ethan P
parent 7a75c55a34
commit b0a2ca70ba

View File

@ -29,7 +29,12 @@ while shiftopt; do
TEST_ENV_BIN_DIR="${HERE}/bin"
TEST_ENV_BIN_SUFFIX=""
;;
*) OPT_ARGV+=("$OPT") ;;
*)
if [[ "$OPT_VAL" ]]; then
OPT_ARGV+=("${OPT}=${OPT_VAL}")
else
OPT_ARGV+=("$OPT")
fi ;;
esac
done