mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 08:35:22 +00:00
f459468395
Add shell scripts and group test files that simplify running riak_test in parallel and for different products/configs/outcomes This is just a speculative/for discussion commit/PR
13 lines
233 B
Bash
Executable File
13 lines
233 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# $1 is backend $2 is riak test profile
|
|
|
|
set -e
|
|
|
|
echo "making results dir"
|
|
|
|
BASE_DIR=$(date +"%FT%H%M")-$BACKEND
|
|
mkdir -p $BASE_DIR
|
|
|
|
for group in groups/*; do ./group.sh $(basename $group) $1 $2 $BASE_DIR; done
|