Add support for reading and writing SPV files.
[pspp] / tests / atlocal.in
1 # -*- shell-script -*-
2
3 # PSPP - a program for statistical analysis.
4 # Copyright (C) 2017 Free Software Foundation, Inc.
5
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19
20
21 # Variables used internally by the testsuite.
22 EXEEXT='@EXEEXT@'
23 PERL='@PERL@'
24 PYTHON='@PYTHON@'
25 WITH_PERL_MODULE='@WITH_PERL_MODULE@'
26 host='@host@'
27 PACKAGE_STRING='@PACKAGE_STRING@'
28 PACKAGE_BUGREPORT='@PACKAGE_BUGREPORT@'
29
30 XMLLINT='@XMLLINT@'
31 if echo | $XMLLINT - >/dev/null 2>&1; then
32     HAVE_XMLLINT=no
33 else
34     HAVE_XMLLINT=yes
35 fi
36
37 PSQL_SUPPORT='@PSQL_SUPPORT@'
38 if test "$PSQL_SUPPORT" = yes; then
39     : ${PG_CONFIG:='@PG_CONFIG@'}
40     : ${PG_DBASE:=pspptest}
41     : ${PG_PORT:=6543}
42     : ${PG_PATH:=`$PG_CONFIG --bindir`}
43
44     # PSQL_SUPPORT indicates that PSPP was built against the PostgreSQL client
45     # library, but it does not mean that the PostgreSQL utilities are
46     # installed.  So check for them and turn off PSQL_SUPPORT if they are not
47     # available.
48     if (PATH=$PG_PATH:$PATH; export PATH; initdb --version) >/dev/null 2>&1
49     then
50         :
51     else
52         PSQL_SUPPORT=no
53     fi
54 fi
55
56 # Variables used by programs invoked by the testsuite.
57 CHARSETALIASDIR="$abs_top_builddir/gl"
58 export CHARSETALIASDIR
59
60 GZIP=
61 export GZIP
62
63 WINEPREFIX=$HOME/.wine    # Work around the following kludge to keep wine happy
64 export WINEPREFIX
65
66
67 HOME=/nonexistent               # Kluge to make PSPP ignore $HOME/.pspprc.
68 export HOME
69
70 # Avoids error messages during tests if $TERM is set to an unknown terminal.
71 TERM=; unset TERM
72
73 pspp_diff=`which diff`
74 if test X"$RUNNER" = Xwine; then
75     diff () {
76         $pspp_diff -w  "$@"
77     }
78 fi
79
80 # Enable leak suppressions for Address Sanitizer/Leak Sanitizer.
81 LSAN_OPTIONS="suppressions=$abs_top_srcdir/tests/lsan.supp print_suppressions=0"
82 export LSAN_OPTIONS