#! /bin/sh # Copyright (C) 2011 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Check that auxiliary script 'test-driver' gets automatically installed # in the correct directory by 'parallel-tests' option. am_parallel_tests=yes . ./defs || Exit 1 : Try first with parallel-tests defined in AM_INIT_AUTOMAKE. mkdir am-init-automake cd am-init-automake cat > configure.in < Makefile.am < sub/Makefile.am <stderr || { cat stderr >&2; Exit 1; } cat stderr >&2 ls -l . sub my_aux_dir # For debugging. test -f my_aux_dir/test-driver test ! -r test-driver test ! -r sub/test-driver grep '^configure\.in:3:.*installing.*my_aux_dir/test-driver' stderr cd .. : Now try with parallel-tests defined in AUTOMAKE_OPTIONS. mkdir automake-options cd automake-options cat > configure.in < dir/GNUmakefile.am <stderr \ || { cat stderr >&2; Exit 1; } cat stderr >&2 ls -l . dir build-aux # For debugging. test -f build-aux/test-driver test ! -r test-driver test ! -r dir/test-driver grep '^dir/GNUmakefile\.am:2:.*installing.*build-aux/test-driver' stderr :