aodh/run-functional-tests.sh
Julien Danjou 239fbb2e7b tests: replace bash scripts with overtest
This replaces the usage of our custom bash scripts by overtest to setup
the daemon we need (PostgreSQL, MySQL and MongoDB).

Change-Id: I65e0358229043660c81f16ea8c624542bab1d19a
2016-01-19 11:20:35 +01:00

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
$*