mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
13 lines
536 B
Bash
Executable file
13 lines
536 B
Bash
Executable file
#!/bin/bash
|
|
|
|
## tournament.sh runs a sequence of duels between greens and blues.
|
|
## Each test run changes the PILOSA_STORAGE_BACKEND and runs either
|
|
## one or two backends through the rigors of make testv-race.
|
|
## logs are saved to the tourna.log.${i} files.
|
|
|
|
for i in rbf roaring bolt rbf_roaring roaring_rbf roaring_bolt; do
|
|
echo "$(date) starting ${i}, output to tourna.log.${i}"
|
|
echo "***=== ${i} ====================*** $(date)" &> tourna.log.${i}
|
|
PILOSA_STORAGE_BACKEND=${i} make testv-race 2>&1 > tourna.log.${i}
|
|
done
|
|
|