Skip to content

Commit 32b798d

Browse files
authored
Run rust tests separately (#1893)
Signed-off-by: Matei <matei@feldera.com>
1 parent 7b54005 commit 32b798d

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

scripts/bench.bash

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ if [ "$SMOKE" != "" ]; then
2828
EVENT_RATE=10000000
2929
MAX_EVENTS=1000000
3030
fi
31-
cargo bench --bench nexmark -- --first-event-rate=${EVENT_RATE} --max-events=${MAX_EVENTS} --cpu-cores ${CORES} --num-event-generators ${GENERATORS} --source-buffer-size 10000 --input-batch-size 40000 --csv ${NEXMARK_CSV_FILE}
31+
32+
FILES=( "q0" "q1" "q2" "q3" "q4" "q5" "q6" "q7" "q8" "q9" "q12" "q13" "q14" "q15" "q16" "q17" "q18" "q19" "q20" "q21" "q22" )
33+
for FILE in "${FILES[@]}"
34+
do cargo bench --bench nexmark -- --first-event-rate=${EVENT_RATE} --max-events=${MAX_EVENTS} --cpu-cores ${CORES} --num-event-generators ${GENERATORS} --source-buffer-size 10000 --input-batch-size 40000 --csv ${NEXMARK_CSV_FILE} --query $FILE
35+
done
3236

3337
# Run nexmark SQL benchmark
3438
# This test requires a running instance of redpanda and pipeline-manager.

0 commit comments

Comments
 (0)