Edit

kc3-lang/automake/tests/pluseq8.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1999-04-27 15:42:53
    Hash : 991def1a
    Message : * pluseq8.test: New file. * Makefile.am (TESTS): Added pluseq8.test.

  • tests/pluseq8.test
  • #! /bin/sh
    
    # Another `+=' test.  From Paul Berrevoets.
    
    . $srcdir/defs || exit 1
    
    cat > Makefile.am << 'END'
    VAR = \
        one \
        two
    VAR += three
    END
    
    $AUTOMAKE || exit 1
    
    sed -n -e '/^VAR =.*\\$/ {
       :loop
        p
        n
        /\\$/ b loop
        p
        n
       }' Makefile.in | grep three