Skip to content

Commit 3588f3e

Browse files
committed
Fix test.sh shellcheck errors.
1 parent 33a95f2 commit 3588f3e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,8 @@ function run_slower_unit_tests() {
701701

702702
# shellcheck disable=SC2086
703703
run_with_timing "${msg}" \
704-
"$BINDIR"/unit/large_inserts_stress_test ${Use_shmem} --num-inserts ${num_rows}
704+
"$BINDIR"/unit/large_inserts_stress_test ${Use_shmem} \
705+
--num-inserts ${num_rows} \
705706
--num-threads ${n_threads}
706707

707708
# Test runs w/ more inserts and enable bg-threads
@@ -914,10 +915,10 @@ function run_other_driver_tests() {
914915
# when shared-memory is configured.
915916
# -----------------------------------------------------------------------
916917
# shellcheck disable=SC2086
917-
if [ "$use_shmem" != "" ]; then
918+
if [ "$Use_shmem" != "" ]; then
918919
run_with_timing "Filter perf tests${use_msg}" \
919920
"$BINDIR"/driver_test filter_test --perf \
920-
--seed "$SEED" $use_shmem
921+
--seed "$SEED" $Use_shmem
921922
fi
922923
}
923924

0 commit comments

Comments
 (0)