riak_test/groups.sh
Russell Brown f459468395 Add group tests
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
2018-03-26 11:23:47 +01:00

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