forked from ariadne/pkgconf
tests: add tests for bug #47
parent
c04a64352f
commit
7ecf1e278d
|
@ -0,0 +1,9 @@
|
|||
prefix=/usr
|
||||
exec_prefix=${prefix}
|
||||
libdir=${prefix}/lib
|
||||
includedir=${prefix}/include
|
||||
|
||||
Name: framework-1
|
||||
Description: Another pkg-config test
|
||||
Version: 1.3
|
||||
Libs: -F${libdir} -framework framework-1
|
|
@ -0,0 +1,10 @@
|
|||
prefix=/usr
|
||||
exec_prefix=${prefix}
|
||||
libdir=${prefix}/lib
|
||||
includedir=${prefix}/include
|
||||
|
||||
Name: framework-2
|
||||
Description: Another pkg-config test
|
||||
Version: 1.3
|
||||
Libs: -F${libdir} -framework framework-2
|
||||
Requires: framework-1
|
|
@ -214,6 +214,12 @@ run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} --libs nocflag; echo \$?" \
|
|||
run_test "cp ${selfdir}/lib1/foo.pc . && ${1} --libs foo.pc; rm -f foo.pc" \
|
||||
'-lfoo'
|
||||
|
||||
# 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" \
|
||||
"-F/usr/lib -framework framework-1 -framework framework-2"
|
||||
|
||||
# 10) tests for internal getopt implementation with options at the end
|
||||
if [ "x@STRICT_MODE@" = "xno" ]; then
|
||||
run_test "PKG_CONFIG_PATH='${selfdir}/lib1' ${1} foo --libs" \
|
||||
|
|
Loading…
Reference in New Issue