Fix shellcheck warnings in test_rust.sh

This commit is contained in:
rl1987
2019-02-01 20:53:40 +02:00
parent d9010c5b67
commit 10455aeff2
2 changed files with 5 additions and 3 deletions
+2
View File
@@ -0,0 +1,2 @@
o Code simplification and refactoring (shell scripts):
- Fix shellcheck warning in test_rust.sh. Fixes issue 29064.
+3 -3
View File
@@ -16,10 +16,10 @@ for cargo_toml_dir in "${abs_top_srcdir:-../../..}"/src/rust/*; do
if [ -e "${cargo_toml_dir}/Cargo.toml" ]; then
cd "${abs_top_builddir:-../../..}/src/rust" && \
CARGO_TARGET_DIR="${abs_top_builddir:-../../..}/src/rust/target" \
"${CARGO:-cargo}" test ${CARGO_ONLINE-"--frozen"} \
"${CARGO:-cargo}" test "${CARGO_ONLINE-'--frozen'}" \
--features "test_linking_hack" \
--target $rustc_host \
${EXTRA_CARGO_OPTIONS} \
--target "$rustc_host" \
"${EXTRA_CARGO_OPTIONS}" \
--manifest-path "${cargo_toml_dir}/Cargo.toml" || exitcode=1
fi
done