Skip to content

Commit 29459e2

Browse files
committed
turn async back on in tests
1 parent 708b57a commit 29459e2

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

test.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ function nightly_functionality_stress_tests() {
175175
local dbname="splinter_test.functionality.db"
176176
echo "$Me: Run ${test_name} with ${n_mills} million rows, on ${ntables} tables, with ${cache_size} GiB cache"
177177
run_with_timing "Functionality Stress test ${test_descr}" \
178-
"$BINDIR"/driver_test splinter_test --functionality ${num_rows} 1000 --max-async-inflight 0 \
178+
"$BINDIR"/driver_test splinter_test --functionality ${num_rows} 1000 \
179179
--num-tables ${ntables} \
180180
--cache-capacity-gib ${cache_size} \
181181
--db-location ${dbname}
@@ -186,7 +186,7 @@ function nightly_functionality_stress_tests() {
186186
local dbname="splinter_test.functionality.db"
187187
echo "$Me: Run ${test_name} with ${n_mills} million rows, on ${ntables} tables, with ${cache_size} GiB cache"
188188
run_with_timing "Functionality Stress test ${test_descr}" \
189-
"$BINDIR"/driver_test splinter_test --functionality ${num_rows} 1000 --max-async-inflight 0 \
189+
"$BINDIR"/driver_test splinter_test --functionality ${num_rows} 1000 \
190190
--num-tables ${ntables} \
191191
--cache-capacity-gib ${cache_size} \
192192
--db-location ${dbname}
@@ -202,7 +202,7 @@ function nightly_functionality_stress_tests() {
202202
test_descr="${nrows_h} rows, ${ntables} tables, ${cache_size} MiB cache"
203203
echo "$Me: Run with ${n_mills} million rows, on ${ntables} tables, with default ${cache_size} GiB cache"
204204
run_with_timing "Functionality Stress test ${test_descr}" \
205-
"$BINDIR"/driver_test splinter_test --functionality ${num_rows} 1000 --max-async-inflight 0 \
205+
"$BINDIR"/driver_test splinter_test --functionality ${num_rows} 1000 \
206206
--num-tables ${ntables} \
207207
--cache-capacity-gib ${cache_size} \
208208
--db-location ${dbname}
@@ -213,7 +213,7 @@ function nightly_functionality_stress_tests() {
213213
test_descr="${nrows_h} rows, ${ntables} tables, ${cache_size} MiB cache"
214214
echo "$Me: Run with ${n_mills} million rows, on ${ntables} tables, with default ${cache_size} GiB cache"
215215
run_with_timing "Functionality Stress test ${test_descr}" \
216-
"$BINDIR"/driver_test splinter_test --functionality ${num_rows} 1000 --max-async-inflight 0 \
216+
"$BINDIR"/driver_test splinter_test --functionality ${num_rows} 1000 \
217217
--num-tables ${ntables} \
218218
--cache-capacity-gib ${cache_size} \
219219
--db-location ${dbname}
@@ -223,7 +223,7 @@ function nightly_functionality_stress_tests() {
223223
# echo "$Me: Run with ${n_mills} million rows, on ${ntables} tables, with small ${cache_size} MiB cache"
224224
# Commented out, because we run into issue # 322.
225225
# run_with_timing "Functionality Stress test ${test_descr}" \
226-
# "$BINDIR"/driver_test splinter_test --functionality ${num_rows} 1000 --max-async-inflight 0 \
226+
# "$BINDIR"/driver_test splinter_test --functionality ${num_rows} 1000 \
227227
# --num-tables ${ntables} \
228228
# --cache-capacity-mib ${cache_size} \
229229
# --db-location ${dbname}
@@ -748,21 +748,21 @@ function run_splinter_functionality_tests() {
748748
key_size=8
749749
# shellcheck disable=SC2086
750750
run_with_timing "Functionality test, key size=${key_size} bytes${use_msg}" \
751-
"$BINDIR"/driver_test splinter_test --functionality 1000000 100 --max-async-inflight 0 \
751+
"$BINDIR"/driver_test splinter_test --functionality 1000000 100 \
752752
$Use_shmem \
753753
--key-size ${key_size} --seed "$SEED"
754754
rm db
755755

756756
# shellcheck disable=SC2086
757757
run_with_timing "Functionality test, with default key size${use_msg}" \
758-
"$BINDIR"/driver_test splinter_test --functionality 1000000 100 --max-async-inflight 0 \
758+
"$BINDIR"/driver_test splinter_test --functionality 1000000 100 \
759759
$Use_shmem \
760760
--seed "$SEED"
761761
rm db
762762

763763
# shellcheck disable=SC2086
764764
run_with_timing "Functionality test, default key size, with background threads${use_msg}" \
765-
"$BINDIR"/driver_test splinter_test --functionality 1000000 100 --max-async-inflight 0 \
765+
"$BINDIR"/driver_test splinter_test --functionality 1000000 100 \
766766
$Use_shmem \
767767
--num-normal-bg-threads 4 --num-memtable-bg-threads 2 \
768768
--seed "$SEED"
@@ -771,7 +771,7 @@ function run_splinter_functionality_tests() {
771771
max_key_size=102
772772
# shellcheck disable=SC2086
773773
run_with_timing "Functionality test, key size=maximum (${max_key_size} bytes)${use_msg}" \
774-
"$BINDIR"/driver_test splinter_test --functionality 1000000 100 --max-async-inflight 0 \
774+
"$BINDIR"/driver_test splinter_test --functionality 1000000 100 \
775775
$Use_shmem \
776776
--key-size ${max_key_size} --seed "$SEED"
777777
rm db

0 commit comments

Comments
 (0)