Edit

kc3-lang/pkgconf/tests/parser.sh

Branch :

  • Show log

    Commit

  • Author : William Pitcock
    Date : 2017-02-03 12:58:11
    Hash : 02ad6d1a
    Message : testsuite: add regression test for #111

  • tests/parser.sh
  • #!/usr/bin/env atf-sh
    
    . $(atf_get_srcdir)/test_env.sh
    
    tests_init \
    	comments \
    	comments_in_fields \
    	dos \
    	no_trailing_newline \
    	argv_parse \
    	bad_option \
    	argv_parse_3 \
    	tilde_quoting \
    	paren_quoting \
    	multiline_field \
    	flag_order_1 \
    	flag_order_2 \
    	flag_order_3 \
    	flag_order_4 \
    	quoted \
    	variable_whitespace \
    	fragment_quoting
    
    comments_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-lfoo  \n" \
    		pkgconf --libs comments
    }
    
    comments_in_fields_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-lfoo  \n" \
    		pkgconf --libs comments-in-fields
    }
    
    dos_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-L/test/lib/dos-lineendings -ldos-lineendings  \n" \
    		pkgconf --libs dos-lineendings
    }
    
    no_trailing_newline_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-I/test/include/no-trailing-newline  \n" \
    		pkgconf --cflags no-trailing-newline
    }
    
    argv_parse_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-llib-3 -llib-1 -llib-2 -lpthread  \n" \
    		pkgconf --libs argv-parse
    }
    
    bad_option_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-e ignore \
    		-s eq:1 \
    		pkgconf --exists -foo
    }
    
    argv_parse_3_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-llib-1 -pthread /test/lib/lib2.so  \n" \
    		pkgconf --libs argv-parse-3
    }
    
    tilde_quoting_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-L~ -ltilde  \n" \
    		pkgconf --libs tilde-quoting
    	atf_check \
    		-o inline:"-I~  \n" \
    		pkgconf --cflags tilde-quoting
    }
    
    paren_quoting_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-L\$(libdir) -ltilde  \n" \
    		pkgconf --libs paren-quoting
    }
    
    multiline_field_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-e ignore \
    		-o match:"multiline description" \
    		pkgconf --list-all
    }
    
    quoted_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-DQUOTED=\\\"bla\\\"  \n" \
    		pkgconf --cflags quotes
    }
    
    flag_order_1_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-L/test/lib -Bdynamic -lfoo -Bstatic -lbar  \n" \
    		pkgconf --libs flag-order-1
    }
    
    flag_order_2_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-L/test/lib -Bdynamic -lfoo -Bstatic -lbar -lfoo  \n" \
    		pkgconf --libs flag-order-1 foo
    }
    
    flag_order_3_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-L/test/lib -Wl,--start-group -lfoo -lbar -Wl,--end-group  \n" \
    		pkgconf --libs flag-order-3
    }
    
    flag_order_4_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-L/test/lib -Wl,--start-group -lfoo -lbar -Wl,--end-group -lfoo  \n" \
    		pkgconf --libs flag-order-3 foo
    }
    
    variable_whitespace_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-I/test/include  \n" \
    		pkgconf --cflags variable-whitespace
    }
    
    fragment_quoting_body()
    {
    	export PKG_CONFIG_PATH="${selfdir}/lib1"
    	atf_check \
    		-o inline:"-fPIC -I/test/include/foo -DQUOTED='\"/test/share/doc\"'  \n" \
    		pkgconf --cflags fragment-quoting
    }