summaryrefslogtreecommitdiff
path: root/tests/atlocal.in
blob: 99661d9f839dbd6b598add1277482c24cc13eaac (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
LD_LIBRARY_PATH="${abs_builddir}/testing@usrlibdir@"
export LD_LIBRARY_PATH
PATH="${abs_builddir}/testing@rpmbindir@:${abs_builddir}/testing@usrbindir@:$PATH"
export PATH

PYLIBDIR=`python -c "from distutils.sysconfig import get_python_lib; import sys; sys.stdout.write(get_python_lib(1))"`
PYTHONPATH="${abs_builddir}/testing${PYLIBDIR}"
export PYTHONPATH

RPMTEST="${abs_builddir}/testing"
RPMDATA="${abs_srcdir}/data/"

RPM_CONFIGDIR="${RPMTEST}/@RPMCONFIGDIR@"
RPM_POPTEXEC_PATH="${RPMTEST}/@usrbindir@"
export RPM_CONFIGDIR RPM_POPTEXEC_PATH

# Popt looks into $HOME
HOME="${RPMTEST}"
export HOME

TZ=UTC
export TZ

TOPDIR="${RPMTEST}/build"

RPM_XFAIL=${RPM_XFAIL-1}

function run()
{
    "$@" --define "_tmppath ${RPMTEST}/tmp" --define "_topdir ${TOPDIR}" --dbpath="${RPMTEST}/var/lib/rpm/"
}

function runroot()
{
    (unset RPM_CONFIGDIR RPM_POPTEXEC_PATH; cd ${RPMTEST} && \
     MAGIC="/magic/magic" FAKECHROOT_BASE="${RPMTEST}" fakechroot "$@" --define "_topdir /build" --noplugins
    )
}

function runroot_other()
{
    (unset RPM_CONFIGDIR RPM_POPTEXEC_PATH; cd ${RPMTEST} && \
     FAKECHROOT_BASE="${RPMTEST}" fakechroot "$@"
    )
}