mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 16:15:56 +00:00
- add tournament.sh to do all pair-wise comparisons of blue-green backends. - isolate txstores away from roaring index/ directories with indexname.index.txstores@@@ dirs.
12 lines
544 B
Bash
Executable file
12 lines
544 B
Bash
Executable file
#!/bin/bash
|
|
|
|
## tournament.sh runs a sequence of duels between greens and blues.
|
|
## Each test run changes the PILOSA_TXSRC 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 lmdb roaring rbf_lmdb rbf_roaring lmdb_rbf lmdb_roaring roaring_rbf roaring_lmdb ; do
|
|
echo "$(date) starting ${i}, output to tourna.log.${i}"
|
|
echo "***=== ${i} ====================*** $(date)" &> tourna.log.${i}
|
|
PILOSA_TXSRC=${i} make testv-race &>> tourna.log.${i}
|
|
done
|