239fbb2e7b
This replaces the usage of our custom bash scripts by overtest to setup the daemon we need (PostgreSQL, MySQL and MongoDB). Change-Id: I65e0358229043660c81f16ea8c624542bab1d19a
14 lines
207 B
Bash
Executable File
14 lines
207 B
Bash
Executable File
#!/bin/bash -x
|
|
set -e
|
|
|
|
case $AODH_TEST_BACKEND in
|
|
hbase)
|
|
export AODH_TEST_STORAGE_URL="hbase://__test__"
|
|
;;
|
|
*)
|
|
source $(which overtest) $AODH_TEST_BACKEND
|
|
;;
|
|
esac
|
|
|
|
$*
|