source: trunk/essentials/sys-devel/automake-1.10/tests/fn99subdir.test

Last change on this file was 3147, checked in by bird, 18 years ago

automake 1.10

File size: 1.9 KB
Line 
1#! /bin/sh
2# Copyright (C) 2006 Free Software Foundation, Inc.
3#
4# This file is part of GNU Automake.
5#
6# GNU Automake is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2, or (at your option)
9# any later version.
10#
11# GNU Automake is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with Automake; see the file COPYING. If not, write to
18# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19# Boston, MA 02110-1301, USA.
20
21# PR 507: Check the filename-length-max=99 option
22# in conjunction with AC_CONFIG_SUBDIRS.
23
24. ./defs || exit 1
25
26set -e
27
28# The name is so that 99 is exactly hit (including final \0).
29subdirname='cnfsubdir'
30
31cat >>configure.in <<END
32AC_CONFIG_SUBDIRS([${subdirname}])
33AC_OUTPUT
34END
35
36cat >Makefile.am <<END
37AUTOMAKE_OPTIONS = filename-length-max=99
38SUBDIRS = ${subdirname}
39END
40
41mkdir ${subdirname} || exit 1
42
43cat >> ${subdirname}/configure.in <<EOF
44AC_INIT([${subdirname}], [1.0])
45AM_INIT_AUTOMAKE
46AC_CONFIG_FILES([Makefile])
47AC_OUTPUT
48EOF
49
50cat >${subdirname}/Makefile.am <<'END'
51AUTOMAKE_OPTIONS = filename-length-max=99
52EXTRA_DIST = 12345678
53END
54
55(cd ${subdirname}; for i in 1 2 3 4 5 6 7 8
56do
57 mkdir -p 12345678 || exit 77
58 cd 12345678
59 touch x
60done)
61
62for init_dir in ${subdirname} .; do
63 (
64 cd ${init_dir} || exit 1
65 $ACLOCAL
66 $AUTOCONF
67 $AUTOMAKE
68 ) || exit 1
69done
70./configure
71$MAKE distcheck
72
73(cd ${subdirname}; for i in 1 2 3 4 5 6 7 8 9
74do
75 mkdir -p 12345678 || exit 77
76 cd 12345678
77 touch x
78done)
79
80$MAKE dist 2>stderr && exit 1
81cat stderr
82grep 'filenames are too long' stderr
83test 1 = `grep 12345678 stderr | wc -l`
84:
Note: See TracBrowser for help on using the repository browser.