aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-dbs/psqlodbc/files/run-ptest
blob: 6b41c636934e04b85ef324f93511caa25c27d542 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/sh

BASEDIR="$(dirname $(readlink -f $0))"

# init and start postgresql server for testing
PGDATA="/var/lib/postgresql/data"
if [ -f "${PGDATA}/PG_VERSION" ]; then
	echo "Data directory is not empty! Skip initdb."
else
	echo "Initializing database: "
	chown -R postgres:postgres ${PGDATA}
	su -l postgres -c "/usr/bin/initdb --pgdata='$PGDATA'"
fi

SYSV_INIT="/etc/init.d/postgresql-server"
if [ -e ${SYSV_INIT} ]; then
	RESTART_POSTGRESQL="${SYSV_INIT} restart"
	STOP_POSTGRESQL="${SYSV_INIT} stop"
else
	RESTART_POSTGRESQL="systemctl restart postgresql"
	STOP_POSTGRESQL="systemctl stop postgresql"
fi

${RESTART_POSTGRESQL} || echo "Failed to restart postgresql, skip the tests."

if [ ! -d ${BASEDIR}/results ]; then
	mkdir ${BASEDIR}/results
fi

# Generate odbc config files and reset db
${BASEDIR}/odbcini-gen.sh || echo "FAIL: Generate odbc config files"
ODBCSYSINI=. ODBCINSTINI=./odbcinst.ini ODBCINI=./odbc.ini \
	${BASEDIR}/reset-db < ${BASEDIR}/sampletables.sql \
	|| echo "FAIL: reset db with sample tables"

# Run the actual tests
TESTS=
for i in `ls ${BASEDIR}/exe/*-test`; do
	TESTS="$TESTS $(basename ${i%-test})"
done

${BASEDIR}/runsuite ${TESTS} --inputdir=${BASEDIR}

# Cleanup
${STOP_POSTGRESQL}
rm -f regression.diffs odbcinst.ini odbc.ini