diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-10-29 20:27:02 -0700 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2012-10-29 20:27:02 -0700 |
commit | 45f51975daed39110f2d5dc403aae6f00e5bd6f6 (patch) | |
tree | 128769c72fb840622b8ff735d37f04d9b9058ac4 /t/check5.sh | |
download | automake-upstream-tar.tar.gz automake-upstream-tar.tar.bz2 automake-upstream-tar.zip |
Imported Upstream version 1.12.1upstream/1.12.1upstream-tar
Diffstat (limited to 't/check5.sh')
-rwxr-xr-x | t/check5.sh | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/t/check5.sh b/t/check5.sh new file mode 100755 index 000000000..8865f3e67 --- /dev/null +++ b/t/check5.sh @@ -0,0 +1,62 @@ +#! /bin/sh +# Copyright (C) 2006-2012 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 <http://www.gnu.org/licenses/>. + +# Test TESTS = $(check_PROGRAMS) + +# For gen-testsuite-part: ==> try-with-serial-tests <== +required='cc native' +. ./defs || Exit 1 + +cat >> configure.ac << 'END' +AC_PROG_CC +AC_OUTPUT +END + +cat > Makefile.am << 'END' +check_PROGRAMS = one two +TESTS = $(check_PROGRAMS) +check-local: + test -f one$(EXEEXT) + test -f two$(EXEEXT) + touch ok +.PHONY: print-tests +print-tests: + echo BEG: $(TESTS) :END +END + +$ACLOCAL +$AUTOCONF +$AUTOMAKE -a + +cat > one.c << 'END' +int main (void) +{ + return 0; +} +END +cp one.c two.c + +./configure +$MAKE check +test -f ok +EXEEXT=.bin $MAKE -e print-tests >stdout || { cat stdout; Exit 1; } +cat stdout +$FGREP 'BEG: one.bin two.bin :END' stdout +# No am__EXEEXT_* variable is needed. +grep '_EXEEXT_[1-9]' Makefile.in && Exit 1 +$FGREP 'TESTS = $(check_PROGRAMS)' Makefile.in + +: |