blob: 1e77669faa66457d7712408daeebf7adf10c5ddb (
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
|
# Global shell definitions for the autotest test suite
PATH="@abs_top_builddir@/dpkg-deb:@abs_top_builddir@/dpkg-split:@abs_top_builddir@/src:@abs_top_builddir@/utils:$PATH"
export PATH
TESTDATA="@abs_top_srcdir@/t-func"
export TESTDATA
# Setup a sane environment
umask 0022
LC_ALL=C
export LC_ALL
TZ=UTC0
export TZ
SOURCE_DATE_EPOCH=0
export SOURCE_DATE_EPOCH
# Cleanup variables that might affect the tests.
unset GZIP
unset BZIP
unset XZ_OPT
unset XZ_DEFAULTS
|