111 lines
2.3 KiB
Bash
Executable File
111 lines
2.3 KiB
Bash
Executable File
#!/usr/bin/env atf-sh
|
|
|
|
. $(atf_get_srcdir)/test_env.sh
|
|
|
|
tests_init \
|
|
cflags \
|
|
variable \
|
|
do_not_eat_slash \
|
|
do_not_duplicate_sysroot_dir \
|
|
uninstalled \
|
|
uninstalled_pkgconf1 \
|
|
uninstalled_fdo \
|
|
uninstalled_fdo_pc_sysrootdir
|
|
|
|
do_not_eat_slash_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
export PKG_CONFIG_SYSROOT_DIR="/"
|
|
atf_check \
|
|
-o inline:"-fPIC -I/test/include/foo\n" \
|
|
pkgconf --cflags baz
|
|
}
|
|
|
|
cflags_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
export PKG_CONFIG_SYSROOT_DIR="${SYSROOT_DIR}"
|
|
atf_check \
|
|
-o inline:"-fPIC -I${SYSROOT_DIR}/test/include/foo\n" \
|
|
pkgconf --cflags baz
|
|
}
|
|
|
|
variable_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
export PKG_CONFIG_SYSROOT_DIR="${SYSROOT_DIR}"
|
|
atf_check \
|
|
-o inline:"${SYSROOT_DIR}/test\n" \
|
|
pkgconf --variable=prefix foo
|
|
atf_check \
|
|
-o inline:"${SYSROOT_DIR}/test/include\n" \
|
|
pkgconf --variable=includedir foo
|
|
}
|
|
|
|
do_not_duplicate_sysroot_dir_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
export PKG_CONFIG_SYSROOT_DIR="/sysroot"
|
|
|
|
atf_check \
|
|
-o inline:"-I/sysroot/usr/include\n" \
|
|
pkgconf --cflags sysroot-dir-2
|
|
|
|
atf_check \
|
|
-o inline:"-I/sysroot/usr/include\n" \
|
|
pkgconf --cflags sysroot-dir-3
|
|
|
|
atf_check \
|
|
-o inline:"-I/sysroot/usr/include\n" \
|
|
pkgconf --cflags sysroot-dir-5
|
|
|
|
export PKG_CONFIG_SYSROOT_DIR="${SYSROOT_DIR}"
|
|
|
|
atf_check \
|
|
-o inline:"-I${SYSROOT_DIR}/usr/include\n" \
|
|
pkgconf --cflags sysroot-dir-4
|
|
}
|
|
|
|
uninstalled_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
export PKG_CONFIG_SYSROOT_DIR="/sysroot"
|
|
|
|
atf_check \
|
|
-o inline:"-L/test/lib -lomg\n" \
|
|
pkgconf --libs omg
|
|
}
|
|
|
|
uninstalled_pkgconf1_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
export PKG_CONFIG_SYSROOT_DIR="/sysroot"
|
|
export PKG_CONFIG_PKGCONF1_SYSROOT_RULES="1"
|
|
|
|
atf_check \
|
|
-o inline:"-L/sysroot/test/lib -lomg\n" \
|
|
pkgconf --libs omg
|
|
}
|
|
|
|
uninstalled_fdo_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
export PKG_CONFIG_SYSROOT_DIR="/sysroot"
|
|
export PKG_CONFIG_FDO_SYSROOT_RULES="1"
|
|
|
|
atf_check \
|
|
-o inline:"-L/test/lib -lomg\n" \
|
|
pkgconf --libs omg
|
|
}
|
|
|
|
uninstalled_fdo_pc_sysrootdir_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
export PKG_CONFIG_SYSROOT_DIR="/sysroot"
|
|
export PKG_CONFIG_FDO_SYSROOT_RULES="1"
|
|
|
|
atf_check \
|
|
-o inline:"-L/sysroot/test/lib -lomg\n" \
|
|
pkgconf --libs omg-sysroot
|
|
}
|