summaryrefslogtreecommitdiff
path: root/tests/test_env.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_env.sh')
-rw-r--r--tests/test_env.sh51
1 files changed, 0 insertions, 51 deletions
diff --git a/tests/test_env.sh b/tests/test_env.sh
deleted file mode 100644
index beecab2..0000000
--- a/tests/test_env.sh
+++ /dev/null
@@ -1,51 +0,0 @@
-srcdir="$(atf_get_srcdir)"
-export PATH="$srcdir/..:${PATH}"
-
-#--- begin windows kludge ---
-# When building with Visual Studio, binaries are in a subdirectory named after the configration...
-# and the configuration is not known unless you're in the IDE, or something.
-# So just guess. This won't work well if you build more than one configuration.
-the_configuration=""
-for configuration in Debug Release RelWithDebInfo
-do
- if test -d "$srcdir/../$configuration"
- then
- if test "$the_configuration" != ""
- then
- echo "test_env.sh: FAIL: more than one configuration found"
- exit 1
- fi
- the_configuration=$configuration
- export PATH="$srcdir/../${configuration}:${PATH}"
- fi
-done
-#--- end kludge ---
-
-selfdir="/home/kaniini/pkgconf/tests"
-LIBRARY_PATH_ENV="LIBRARY_PATH"
-PATH_SEP=":"
-SYSROOT_DIR="${selfdir}/test"
-case "$(uname -s)" in
-Msys|CYGWIN*) PATH_SEP=";";;
-Haiku) LIBRARY_PATH_ENV="BELIBRARIES";;
-esac
-
-prefix="/usr/local"
-exec_prefix="${prefix}"
-datarootdir="${prefix}/share"
-pcpath="${exec_prefix}/lib/pkgconfig:${datarootdir}/pkgconfig"
-
-tests_init()
-{
- TESTS="$@"
- export TESTS
- for t ; do
- atf_test_case $t
- done
-}
-
-atf_init_test_cases() {
- for t in ${TESTS}; do
- atf_add_test_case $t
- done
-}