summaryrefslogtreecommitdiff
path: root/.functests
blob: af989f50ff2edd927029d7ab47aeb7060eebb46b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

SRC_DIR=$(python -c "import os; print os.path.dirname(os.path.realpath('$0'))")
set -e

cd ${SRC_DIR}
export TESTS_DIR=${SRC_DIR}/test/functional
ostestr --serial --pretty $@
rvalue=$?
cd -

exit $rvalue