Edit

kc3-lang/automake/tests/colon3.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-12-06 03:31:22
    Hash : 0df76f10
    Message : bug fixes for : mode support

  • tests/colon3.test
  • #! /bin/sh
    
    # Make sure ":" works with files automake generates.
    # This test is for multiple ":"s.
    
    . $srcdir/defs || exit 1
    
    cat > configure.in << 'END'
    PACKAGE=nonesuch
    VERSION=nonesuch
    AC_ARG_PROGRAM
    AC_PROG_INSTALL
    AC_OUTPUT(Makefile:zardoz.in:two.in)
    END
    
    : > zardoz.am
    : > two.in
    
    $AUTOMAKE || exit 1
    
    # We actually check several things here.
    test -f zardoz.in || exit 1
    grep '^zardoz:' zardoz.in && exit 1
    grep ' two.in' zardoz.in