2012-05-03 06:50:57 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Tests for pkg-config compliance.
|
|
|
|
# * Copyright (c) 2012 Michał Górny <mgorny@gentoo.org>.
|
|
|
|
|
|
|
|
done=0
|
|
|
|
failed=0
|
|
|
|
|
|
|
|
run_test() {
|
|
|
|
local res t_ret 2>/dev/null || true
|
2012-07-25 22:47:09 +00:00
|
|
|
local cmdline 2>/dev/null || true
|
2012-05-03 06:50:57 +00:00
|
|
|
|
2012-07-25 22:47:09 +00:00
|
|
|
cmdline="${1}"
|
|
|
|
|
|
|
|
eval res="\$(${1})" 2>/dev/null
|
2012-05-03 06:50:57 +00:00
|
|
|
|
|
|
|
t_ret=0
|
|
|
|
while [ ${#} -gt 1 ]; do
|
|
|
|
shift
|
|
|
|
|
|
|
|
case "${res}" in
|
2012-08-25 23:43:37 +00:00
|
|
|
*"${1}"*)
|
2012-05-03 06:50:57 +00:00
|
|
|
;;
|
|
|
|
*)
|
2012-07-25 22:47:09 +00:00
|
|
|
echo
|
|
|
|
echo "***********************"
|
|
|
|
echo "!!! Test $done failed."
|
|
|
|
echo "!!! $ ${cmdline}"
|
|
|
|
echo "!!! ${res}"
|
|
|
|
echo "!!! expected '${1}' in output"
|
|
|
|
echo "***********************"
|
2012-05-03 06:50:57 +00:00
|
|
|
t_ret=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ ${t_ret} -eq 0 ]; then
|
2012-07-25 22:47:09 +00:00
|
|
|
echo -n "."
|
2012-05-03 06:50:57 +00:00
|
|
|
else
|
|
|
|
failed=$(( failed + 1 ))
|
|
|
|
fi
|
|
|
|
done=$(( done + 1 ))
|
|
|
|
}
|
|
|
|
|
2012-09-14 20:44:26 +00:00
|
|
|
selfdir=$(cd "$(dirname "${0}")"; pwd | sed s#/c/#c:/#)
|
2012-05-03 06:50:57 +00:00
|
|
|
|
2012-09-14 20:50:27 +00:00
|
|
|
PATH_SEP=":"
|
2012-09-14 21:04:20 +00:00
|
|
|
SYSROOT_DIR="${selfdir}/test"
|
2012-09-14 20:50:27 +00:00
|
|
|
if [ "$(uname -o)" = "Msys" ]; then
|
|
|
|
PATH_SEP=";"
|
|
|
|
fi
|
|
|
|
|
2012-05-03 06:50:57 +00:00
|
|
|
# 1) overall 'is it working?' test
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1}; echo \$?" \
|
2012-09-14 19:46:52 +00:00
|
|
|
'1'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs foo" \
|
2012-05-03 06:50:57 +00:00
|
|
|
'-lfoo'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --cflags --libs foo" \
|
2012-05-03 06:50:57 +00:00
|
|
|
'-lfoo' '-I/usr/include/foo' '-fPIC'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --cflags --libs 'foo > 1.2'" \
|
2012-07-20 22:18:35 +00:00
|
|
|
'-lfoo' '-I/usr/include/foo' '-fPIC'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --cflags --libs 'foo > 1.2 bar >= 1.3'" \
|
2012-07-20 23:08:54 +00:00
|
|
|
'-lfoo' '-I/usr/include/foo' '-fPIC'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --cflags --libs 'foo' '>' '1.2'" \
|
2012-07-20 22:18:35 +00:00
|
|
|
'-lfoo' '-I/usr/include/foo' '-fPIC'
|
2013-02-25 14:50:11 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exists nonexistant; echo \$?" \
|
|
|
|
'1'
|
2013-03-15 21:50:30 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} nonexistant; echo \$?" \
|
|
|
|
'1'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exists 'foo > 1.2'; echo \$?" \
|
2012-05-03 06:50:57 +00:00
|
|
|
'0'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exists 'foo > 1.2.3'; echo \$?" \
|
2012-05-03 06:50:57 +00:00
|
|
|
'1'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exists 'foo' '>' '1.2'; echo \$?" \
|
2012-05-06 02:18:40 +00:00
|
|
|
'0'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --uninstalled 'foo'; echo \$?" \
|
2012-05-06 04:09:34 +00:00
|
|
|
'1'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --uninstalled 'omg'; echo \$?" \
|
2012-05-06 04:09:34 +00:00
|
|
|
'0'
|
2012-07-20 21:28:50 +00:00
|
|
|
run_test "${1} --modversion ${selfdir}/lib1/foo.pc" \
|
2012-05-06 05:12:00 +00:00
|
|
|
'1.2.3'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exists 'foo >= '; echo \$?" \
|
2012-07-21 00:55:06 +00:00
|
|
|
'1'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exists 'tilde <= 1.0.0'; echo \$?" \
|
2012-07-30 10:01:07 +00:00
|
|
|
'1'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exists 'tilde = 1.0.0~rc1'; echo \$?" \
|
2012-07-24 01:53:20 +00:00
|
|
|
'0'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exists 'tilde >= 1.0.0'; echo \$?" \
|
2012-07-30 10:01:07 +00:00
|
|
|
'0'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exists '' 'foo'; echo \$?" \
|
2012-07-25 15:18:09 +00:00
|
|
|
'0'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs intermediary-1 intermediary-2" \
|
2012-08-09 21:43:20 +00:00
|
|
|
'-lintermediary-1 -lintermediary-2 -lfoo -lbar -lbaz'
|
2013-02-24 12:42:03 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs circular-1" \
|
|
|
|
'-lcircular-1 -lcircular-2 -lcircular-3'
|
2013-02-24 14:14:23 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs circular-3" \
|
|
|
|
'-lcircular-3 -lcircular-1 -lcircular-2'
|
2013-03-15 23:11:43 +00:00
|
|
|
run_test "${1} --libs ${selfdir}/lib1/circular-3.pc" \
|
|
|
|
'-lcircular-1 -lcircular-2 -lcircular-3'
|
2013-02-24 12:58:51 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs static-archive-libs" \
|
|
|
|
'/libfoo.a -pthread'
|
2012-05-03 06:50:57 +00:00
|
|
|
|
2012-05-03 07:04:48 +00:00
|
|
|
# 2) tests for PKG_CONFIG_PATH order
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1${PATH_SEP}${selfdir}/lib2' ${1} --libs foo" \
|
2012-05-03 07:04:48 +00:00
|
|
|
'-lfoo'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1${PATH_SEP}${selfdir}/lib2' ${1} --libs bar" \
|
2012-05-03 07:04:48 +00:00
|
|
|
'-lbar'
|
|
|
|
|
2012-05-03 07:15:32 +00:00
|
|
|
# 3) tests for 'Requires' and 'Requires.private'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs bar" \
|
2012-05-03 07:15:32 +00:00
|
|
|
'-lfoo' '-lbar'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs --cflags baz" \
|
2012-05-03 07:15:32 +00:00
|
|
|
'-lbaz' '-fPIC' '-I/usr/include/foo'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --static --libs baz" \
|
2012-05-03 19:44:44 +00:00
|
|
|
'-lfoo' '-lbaz' '-lzee'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --static --libs argv-parse-2" \
|
2012-07-25 22:07:34 +00:00
|
|
|
'-pthread '
|
2013-08-14 05:36:43 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --static --cflags baz" \
|
|
|
|
'-fPIC' '-I/usr/include/foo' '-DFOO_STATIC'
|
2013-08-23 02:41:59 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --static --libs-only-l private-libs-duplication" \
|
2013-08-24 03:58:41 +00:00
|
|
|
'-lprivate -lbaz -lzee -lbar -lfoo'
|
2012-05-03 07:15:32 +00:00
|
|
|
|
2012-05-05 17:43:53 +00:00
|
|
|
# 4) tests for parser bugs
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs dos-lineendings" \
|
2012-05-04 03:08:55 +00:00
|
|
|
'-L/usr/lib/dos-lineendings -ldos-lineendings'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs argv-parse" \
|
2012-05-05 17:43:53 +00:00
|
|
|
'-llib-2 -lpthread'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exists -foo; echo \$?" \
|
2012-07-20 22:18:35 +00:00
|
|
|
'1'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs argv-parse-3" \
|
2012-07-30 06:31:14 +00:00
|
|
|
'-llib-1'
|
2013-02-24 13:04:15 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs tilde-quoting" \
|
|
|
|
'-L~'
|
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --cflags tilde-quoting" \
|
|
|
|
'-I~'
|
2012-05-04 03:08:55 +00:00
|
|
|
|
2012-05-05 21:55:27 +00:00
|
|
|
# 5) tests for other regressions
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --variable=includedir foo" \
|
2012-05-05 21:55:27 +00:00
|
|
|
'/usr/include'
|
2013-08-24 05:19:41 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs-only-L --keep-system-libs cflags-libs-only" \
|
2012-07-25 22:23:21 +00:00
|
|
|
'-L/usr/local/lib'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs-only-L --libs-only-l cflags-libs-only" \
|
2012-07-25 22:23:21 +00:00
|
|
|
'-lfoo'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --cflags-only-I --cflags-only-other cflags-libs-only" \
|
2012-07-25 22:23:21 +00:00
|
|
|
'-I/usr/local/include'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs incomplete; echo $?" \
|
2012-09-02 22:34:44 +00:00
|
|
|
'0'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --cflags incomplete" \
|
2012-09-05 12:00:15 +00:00
|
|
|
' '
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs incomplete" \
|
2012-09-05 12:00:15 +00:00
|
|
|
' '
|
2012-05-05 21:55:27 +00:00
|
|
|
|
2012-05-06 02:59:24 +00:00
|
|
|
# 6) tests for builtins
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --modversion pkg-config" \
|
2013-02-24 14:13:19 +00:00
|
|
|
'0.28'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --variable=prefix foo" \
|
2012-05-07 04:30:37 +00:00
|
|
|
'/usr'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --define-variable=prefix=/test --variable=prefix foo" \
|
2012-05-07 04:30:37 +00:00
|
|
|
'/test'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --variable=pcfiledir foo" \
|
2012-07-21 19:44:38 +00:00
|
|
|
"${selfdir}/lib1"
|
2012-05-06 02:59:24 +00:00
|
|
|
|
2012-05-07 08:44:59 +00:00
|
|
|
# 7) tests for env modifiers
|
2012-09-14 21:04:20 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' PKG_CONFIG_SYSROOT_DIR='${SYSROOT_DIR}' ${1} --cflags baz" \
|
|
|
|
"-I${SYSROOT_DIR}/usr/include/foo"
|
2013-02-24 14:57:53 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' PKG_CONFIG_SYSROOT_DIR='${SYSROOT_DIR}' ${1} --variable=prefix baz" \
|
|
|
|
"${SYSROOT_DIR}/usr"
|
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' PKG_CONFIG_SYSROOT_DIR='${SYSROOT_DIR}' ${1} --variable=includedir baz" \
|
|
|
|
"${SYSROOT_DIR}/usr/include"
|
2012-05-07 08:44:59 +00:00
|
|
|
|
2012-05-12 01:32:32 +00:00
|
|
|
# 8) tests for 'Conflicts'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs conflicts; echo \$?" \
|
2012-07-30 07:46:03 +00:00
|
|
|
'0'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --ignore-conflicts --libs conflicts; echo \$?" \
|
2012-05-12 01:32:32 +00:00
|
|
|
'-lconflicts' '0'
|
|
|
|
|
2012-07-02 02:28:38 +00:00
|
|
|
# 9) tests for --atleast-version (with and without trailing space)
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --atleast-version 1.0 foo; echo \$?" \
|
2012-07-02 02:24:53 +00:00
|
|
|
'0'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --atleast-version 2.0 foo; echo \$?" \
|
2012-07-02 02:24:53 +00:00
|
|
|
'1'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exact-version 1.0 foo; echo \$?" \
|
2012-07-02 03:03:07 +00:00
|
|
|
'1'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exact-version 1.2.3 foo; echo \$?" \
|
2012-07-02 03:03:07 +00:00
|
|
|
'0'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --max-version 1.0 foo; echo \$?" \
|
2012-07-02 03:03:07 +00:00
|
|
|
'1'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --max-version 2.0 foo; echo \$?" \
|
2012-07-02 03:03:07 +00:00
|
|
|
'0'
|
|
|
|
|
2012-07-02 02:28:38 +00:00
|
|
|
# tests for issue #20
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --atleast-version 1.0 'foo '; echo \$?" \
|
2012-07-02 02:28:38 +00:00
|
|
|
'0'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --atleast-version 2.0 'foo '; echo \$?" \
|
2012-07-02 02:28:38 +00:00
|
|
|
'1'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exact-version 1.0 'foo '; echo \$?" \
|
2012-07-02 03:03:07 +00:00
|
|
|
'1'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exact-version 1.2.3 'foo '; echo \$?" \
|
2012-07-02 03:03:07 +00:00
|
|
|
'0'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --max-version 1.0 'foo '; echo \$?" \
|
2012-07-02 03:03:07 +00:00
|
|
|
'1'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --max-version 2.0 'foo '; echo \$?" \
|
2012-07-02 03:03:07 +00:00
|
|
|
'0'
|
2012-07-02 02:24:53 +00:00
|
|
|
|
2012-08-12 10:32:31 +00:00
|
|
|
# test missing requires
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --cflags missing-require; echo \$?" \
|
2012-08-12 10:32:31 +00:00
|
|
|
'1'
|
|
|
|
|
2012-08-14 09:12:01 +00:00
|
|
|
# test quoted #35
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --cflags quotes" \
|
2012-08-14 09:12:01 +00:00
|
|
|
"-DQUOTED=\\\"bla\\\""
|
|
|
|
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs nolib; echo \$?" \
|
2012-08-20 20:47:10 +00:00
|
|
|
'0'
|
|
|
|
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs nocflag; echo \$?" \
|
2012-08-20 20:47:10 +00:00
|
|
|
'0'
|
|
|
|
|
2012-08-26 00:09:33 +00:00
|
|
|
# test 36 - running against file in CWD with no path
|
|
|
|
# File moved to CWD to allow arbitrary path to pkgconf and keep pc file in CWD
|
|
|
|
run_test "cp ${selfdir}/lib1/foo.pc . && ${1} --libs foo.pc; rm -f foo.pc" \
|
|
|
|
'-lfoo'
|
|
|
|
|
2013-03-15 22:12:06 +00:00
|
|
|
# test 47 - framework flags
|
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs framework-1" \
|
|
|
|
"-F/usr/lib -framework framework-1"
|
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs framework-2" \
|
2013-03-15 22:27:22 +00:00
|
|
|
"-F/usr/lib -framework framework-2 -framework framework-1"
|
2013-12-27 11:20:02 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs framework-1 framework-2" \
|
|
|
|
"-F/usr/lib -framework framework-1 -framework framework-2"
|
2013-03-15 22:12:06 +00:00
|
|
|
|
2013-03-16 01:18:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exists --print-errors 'foo > 0.6.0 foo < 0.8.0'; echo \$?" \
|
2013-03-16 01:10:39 +00:00
|
|
|
'1'
|
|
|
|
|
2013-03-20 13:51:15 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --exists --print-errors 'nonexisting foo <= 3'; echo \$?" \
|
2013-03-17 22:15:33 +00:00
|
|
|
'1'
|
|
|
|
|
2013-04-09 12:39:27 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib2' ${1} ${selfdir}/lib3/bar.pc --cflags" \
|
2013-03-20 13:51:15 +00:00
|
|
|
'-fPIC -I/usr/include/foo'
|
|
|
|
|
2012-07-20 18:35:33 +00:00
|
|
|
# 10) tests for internal getopt implementation with options at the end
|
2012-07-25 22:56:10 +00:00
|
|
|
if [ "x@STRICT_MODE@" = "xno" ]; then
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} foo --libs" \
|
2012-07-20 21:33:48 +00:00
|
|
|
'-lfoo'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} foo --cflags --libs" \
|
2012-07-20 21:33:48 +00:00
|
|
|
'-lfoo' '-I/usr/include/foo' '-fPIC'
|
2012-09-14 20:56:45 +00:00
|
|
|
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --cflags foo --libs" \
|
2012-07-20 21:33:48 +00:00
|
|
|
'-lfoo' '-I/usr/include/foo' '-fPIC'
|
|
|
|
fi
|
2012-07-20 18:35:33 +00:00
|
|
|
|
2013-02-24 15:08:06 +00:00
|
|
|
run_test "${1} --blah; echo \$?" \
|
|
|
|
'1'
|
|
|
|
|
2012-07-25 22:47:09 +00:00
|
|
|
echo
|
|
|
|
|
2012-05-03 06:50:57 +00:00
|
|
|
if [ ${failed} -gt 0 ]; then
|
|
|
|
echo "${failed} of ${done} tests failed. See output for details." >&2
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "${done} tests done. All succeeded." >&2
|
|
|
|
exit 0
|
|
|
|
fi
|