File: framework.sh

package info (click to toggle)
pkgconf 2.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,820 kB
  • sloc: ansic: 8,111; sh: 6,689; makefile: 247; python: 157
file content (20 lines) | stat: -rwxr-xr-x 477 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env atf-sh

. $(atf_get_srcdir)/test_env.sh

tests_init \
	libs

libs_body()
{
	export PKG_CONFIG_PATH="${selfdir}/lib1"
	atf_check \
		-o inline:"-F/test/lib -framework framework-1\n" \
		pkgconf --libs framework-1
	atf_check \
		-o inline:"-F/test/lib -framework framework-2 -framework framework-1\n" \
		pkgconf --libs framework-2
	atf_check \
		-o inline:"-F/test/lib -framework framework-2 -framework framework-1\n" \
		pkgconf --libs framework-1 framework-2
}