Edit

kc3-lang/pkgconf/tests/framework.sh

Branch :

  • Show log

    Commit

  • Author : Baptiste Daroussin
    Date : 2016-09-18 22:48:13
    Hash : 5c2bee67
    Message : Add Kyua tests

  • tests/framework.sh
  • #!/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 -F/test/lib -framework framework-1  \n" \
    		pkgconf --libs framework-2
    	atf_check \
    		-o inline:"-F/test/lib -framework framework-1 -F/test/lib -framework framework-2  \n" \
    		pkgconf --libs framework-1 framework-2
    }