Edit

kc3-lang/automake/tests/checkall.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1998-09-28 01:47:08
    Hash : 18c8af98
    Message : * Makefile.am (TESTS): Added clean.am. * clean.test: New file. * ansi2.test: Updated test for new SUBDIRS change. * noinst.test: Updated test for new SUBDIRS change. * checkall.test: Added check to make sure check-local is handled. Updated test for new SUBDIRS change. * java.test: Updated test for new SUBDIRS change.

  • tests/checkall.test
  • #!/bin/sh
    
    # Test for bug where check target doesn't depend on all.
    
    . $srcdir/defs || exit 1
    
    cat > Makefile.am << 'END'
    bin_SCRIPTS = derived
    check-local:
    	true
    END
    
    $AUTOMAKE || exit 1
    
    grep '^check-am:.*all-am' Makefile.in || exit 1
    grep 'MAKE.*check-local' Makefile.in