test: expose recent gnulib canonicalize bug
[coreutils/ericb.git] / cfg.mk
bloba5d129eb61583582dfe3f510510acbb0ec4887d0
1 # Customize maint.mk -*- makefile -*-
2 # Copyright (C) 2003-2012 Free Software Foundation, Inc.
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # Used in maint.mk's web-manual rule
18 manual_title = Core GNU utilities
20 # Use the direct link. This is guaranteed to work immediately, while
21 # it can take a while for the faster mirror links to become usable.
22 url_dir_list = http://ftp.gnu.org/gnu/$(PACKAGE)
24 # Tests not to run as part of "make distcheck".
25 local-checks-to-skip = \
26 sc_texinfo_acronym
28 # Tools used to bootstrap this package, used for "announcement".
29 bootstrap-tools = autoconf,automake,gnulib,bison
31 # Now that we have better tests, make this the default.
32 export VERBOSE = yes
34 # Comparing tarball sizes compressed using different xz presets, we see that
35 # an -8e-compressed tarball is only 9KiB larger than the -9e-compressed one.
36 # Using -8e is preferred, since that lets the decompression process use half
37 # the memory (32MiB rather than 64MiB).
38 # $ for i in {7,8,9}{e,}; do \
39 # (n=$(xz -$i < coreutils-8.15*.tar|wc -c);echo $n $i) & done |sort -nr
40 # 5129388 7
41 # 5036524 7e
42 # 5017476 8
43 # 5010604 9
44 # 4923016 8e
45 # 4914152 9e
46 export XZ_OPT = -8e
48 old_NEWS_hash = c2d954b7c19745272321cc4c4b676993
50 # Add an exemption for sc_makefile_at_at_check.
51 _makefile_at_at_check_exceptions = ' && !/^cu_install_program =/'
53 # Our help-version script is in a slightly different location.
54 _hv_file ?= $(srcdir)/tests/misc/help-version
56 # Ensure that the list of O_ symbols used to compute O_FULLBLOCK is complete.
57 dd = $(srcdir)/src/dd.c
58 sc_dd_O_FLAGS:
59 @rm -f $@.1 $@.2
60 @{ echo O_FULLBLOCK; echo O_NOCACHE; \
61 perl -nle '/^ +\| (O_\w*)$$/ and print $$1' $(dd); } | sort > $@.1
62 @{ echo O_NOFOLLOW; perl -nle '/{"[a-z]+",\s*(O_\w+)},/ and print $$1' \
63 $(dd); } | sort > $@.2
64 @diff -u $@.1 $@.2 || diff=1 || diff=; \
65 rm -f $@.1 $@.2; \
66 test "$$diff" \
67 && { echo '$(ME): $(dd) has inconsistent O_ flag lists'>&2; \
68 exit 1; } || :
70 # Ensure that dd's definition of LONGEST_SYMBOL stays in sync
71 # with the strings from the two affected variables.
72 dd_c = $(srcdir)/src/dd.c
73 sc_dd_max_sym_length:
74 ifneq ($(wildcard $(dd_c)),)
75 @len=$$( (sed -n '/conversions\[\] =$$/,/^};/p' $(dd_c);\
76 sed -n '/flags\[\] =$$/,/^};/p' $(dd_c) ) \
77 |sed -n '/"/s/^[^"]*"\([^"]*\)".*/\1/p' \
78 | wc --max-line-length); \
79 max=$$(sed -n '/^#define LONGEST_SYMBOL /s///p' $(dd_c) \
80 |tr -d '"' | wc --max-line-length); \
81 if test "$$len" = "$$max"; then :; else \
82 echo 'dd.c: LONGEST_SYMBOL is not longest' 1>&2; \
83 exit 1; \
85 endif
87 # Many m4 macros names once began with 'jm_'.
88 # On 2004-04-13, they were all changed to start with gl_ instead.
89 # Make sure that none are inadvertently reintroduced.
90 sc_prohibit_jm_in_m4:
91 @grep -nE 'jm_[A-Z]' \
92 $$($(VC_LIST) m4 |grep '\.m4$$'; echo /dev/null) && \
93 { echo '$(ME): do not use jm_ in m4 macro names' \
94 1>&2; exit 1; } || :
96 # Ensure that each root-requiring test is run via the "check-root" rule.
97 sc_root_tests:
98 @if test -d tests \
99 && grep check-root tests/Makefile.am>/dev/null 2>&1; then \
100 t1=sc-root.expected; t2=sc-root.actual; \
101 grep -nl '^ *require_root_$$' \
102 $$($(VC_LIST) tests) |sed s,tests/,, |sort > $$t1; \
103 sed -n '/^root_tests =[ ]*\\$$/,/[^\]$$/p' \
104 $(srcdir)/tests/Makefile.am \
105 | sed 's/^ *//;/^root_tests =/d' \
106 | tr -s '\012\\' ' ' | fmt -1 | sort > $$t2; \
107 diff -u $$t1 $$t2 || diff=1 || diff=; \
108 rm -f $$t1 $$t2; \
109 test "$$diff" \
110 && { echo 'tests/Makefile.am: missing check-root action'>&2; \
111 exit 1; } || :; \
114 # Create a list of regular expressions matching the names
115 # of files included from system.h. Exclude a couple.
116 .re-list:
117 @sed -n '/^# *include /s///p' $(srcdir)/src/system.h \
118 | grep -Ev 'sys/(param|file)\.h' \
119 | sed 's/ .*//;;s/^["<]/^# *include [<"]/;s/\.h[">]$$/\\.h[">]/' \
120 > $@-t
121 @mv $@-t $@
123 define gl_trap_
124 Exit () { set +e; (exit $$1); exit $$1; }; \
125 for sig in 1 2 3 13 15; do \
126 eval "trap 'Exit $$(expr $$sig + 128)' $$sig"; \
127 done
128 endef
130 # Files in src/ should not include directly any of
131 # the headers already included via system.h.
132 sc_system_h_headers: .re-list
133 @if test -f $(srcdir)/src/system.h; then \
134 trap 'rc=$$?; rm -f .re-list; exit $$rc' 0; \
135 $(gl_trap_); \
136 grep -nE -f .re-list \
137 $$($(VC_LIST_EXCEPT) | grep '^\($(srcdir)/\)\?src/') \
138 && { echo '$(ME): the above are already included via system.h'\
139 1>&2; exit 1; } || :; \
142 sc_sun_os_names:
143 @grep -nEi \
144 'solaris[^[:alnum:]]*2\.(7|8|9|[1-9][0-9])|sunos[^[:alnum:]][6-9]' \
145 $$($(VC_LIST_EXCEPT)) && \
146 { echo '$(ME): found misuse of Sun OS version numbers' 1>&2; \
147 exit 1; } || :
149 ALL_RECURSIVE_TARGETS += sc_check-AUTHORS
150 sc_check-AUTHORS:
151 @$(MAKE) -s -C src _sc_check-AUTHORS
153 # Look for lines longer than 80 characters, except omit:
154 # - program-generated long lines in diff headers,
155 # - tests involving long checksum lines, and
156 # - the 'pr' test cases.
157 LINE_LEN_MAX = 80
158 FILTER_LONG_LINES = \
159 /^[^:]*\.diff:[^:]*:@@ / d; \
160 \|^[^:]*tests/misc/sha[0-9]*sum[-:]| d; \
161 \|^[^:]*tests/pr/|{ \|^[^:]*tests/pr/pr-tests:| !d; };
162 sc_long_lines:
163 @files=$$($(VC_LIST_EXCEPT)) \
164 halt='line(s) with more than $(LINE_LEN_MAX) characters; reindent'; \
165 for file in $$files; do \
166 expand $$file | grep -nE '^.{$(LINE_LEN_MAX)}.' | \
167 sed -e "s|^|$$file:|" -e '$(FILTER_LONG_LINES)'; \
168 done | grep . && { msg="$$halt" $(_sc_say_and_exit) } || :
170 # Option descriptions should not start with a capital letter
171 # One could grep source directly as follows:
172 # grep -E " {2,6}-.*[^.] [A-Z][a-z]" $$($(VC_LIST_EXCEPT) | grep '\.c$$')
173 # but that would miss descriptions not on the same line as the -option.
174 ALL_RECURSIVE_TARGETS += sc_option_desc_uppercase
175 sc_option_desc_uppercase:
176 @$(MAKE) -s -C src all_programs
177 @$(MAKE) -s -C man $@
179 # Ensure all man/*.[1x] files are present
180 ALL_RECURSIVE_TARGETS += sc_man_file_correlation
181 sc_man_file_correlation:
182 @$(MAKE) -s -C src all_programs
183 @$(MAKE) -s -C man $@
185 # Ensure that the end of each release's section is marked by two empty lines.
186 sc_NEWS_two_empty_lines:
187 @sed -n 4,/Noteworthy/p $(srcdir)/NEWS \
188 | perl -n0e '/(^|\n)\n\n\* Noteworthy/ or exit 1' \
189 || { echo '$(ME): use two empty lines to separate NEWS sections' \
190 1>&2; exit 1; } || :
192 # Perl-based tests used to exec perl from a #!/bin/sh script.
193 # Now they all start with #!/usr/bin/perl and the portability
194 # infrastructure is in tests/Makefile.am. Make sure no old-style
195 # script sneaks back in.
196 sc_no_exec_perl_coreutils:
197 @if test -f $(srcdir)/tests/Coreutils.pm; then \
198 grep '^exec *\$$PERL.*MCoreutils' $$($(VC_LIST) tests) && \
199 { echo 1>&2 '$(ME): found anachronistic Perl-based tests'; \
200 exit 1; } || :; \
203 # Don't use "readlink" or "readlinkat" directly
204 sc_prohibit_readlink:
205 @prohibit='\<readlink(at)? \(' \
206 halt='do not use readlink(at); use via xreadlink or areadlink*' \
207 $(_sc_search_regexp)
209 # Don't use address of "stat" or "lstat" functions
210 sc_prohibit_stat_macro_address:
211 @prohibit='\<l?stat '':|&l?stat\>' \
212 halt='stat() and lstat() may be function-like macros' \
213 $(_sc_search_regexp)
215 # Ensure that date's --help output stays in sync with the info
216 # documentation for GNU strftime. The only exception is %N,
217 # which date accepts but GNU strftime does not.
218 extract_char = sed 's/^[^%][^%]*%\(.\).*/\1/'
219 sc_strftime_check:
220 @if test -f $(srcdir)/src/date.c; then \
221 grep '^ %. ' $(srcdir)/src/date.c | sort \
222 | $(extract_char) > $@-src; \
223 { echo N; \
224 info libc date calendar format 2>/dev/null|grep '^ `%.'\'\
225 | $(extract_char); } | sort > $@-info; \
226 if test $$(stat --format %s $@-info) != 2; then \
227 diff -u $@-src $@-info || exit 1; \
228 else \
229 echo '$(ME): skipping $@: libc info not installed' 1>&2; \
230 fi; \
231 rm -f $@-src $@-info; \
234 # Indent only with spaces.
235 sc_prohibit_tab_based_indentation:
236 @prohibit='^ * ' \
237 halt='TAB in indentation; use only spaces' \
238 $(_sc_search_regexp)
240 # The SEE ALSO section of a man page should not be terminated with
241 # a period. Check the first line after each "SEE ALSO" line in man/*.x:
242 sc_prohibit_man_see_also_period:
243 @grep -nB1 '\.$$' $$($(VC_LIST_EXCEPT) | grep 'man/.*\.x$$') \
244 | grep -A1 -e '-\[SEE ALSO\]' | grep '\.$$' && \
245 { echo '$(ME): do not end "SEE ALSO" section with a period' \
246 1>&2; exit 1; } || :
248 # Don't use "indent-tabs-mode: nil" anymore. No longer needed.
249 sc_prohibit_emacs__indent_tabs_mode__setting:
250 @prohibit='^( *[*#] *)?indent-tabs-mode:' \
251 halt='use of emacs indent-tabs-mode: setting' \
252 $(_sc_search_regexp)
254 # Ensure that each file that contains fail=1 also contains fail=0.
255 # Otherwise, setting file=1 in the environment would make tests fail
256 # unexpectedly.
257 sc_prohibit_fail_0:
258 @prohibit='\<fail=0\>' \
259 halt='fail=0 initialization' \
260 $(_sc_search_regexp)
262 # The mode part of a setfacl -m option argument must be three bytes long.
263 # I.e., an argument of user:bin:rw or user:bin:r will make Solaris 10's
264 # setfacl reject it with: "Unrecognized character found in mode field".
265 # Use hyphens to give it a length of 3: "...:rw-" or "...:r--".
266 sc_prohibit_short_facl_mode_spec:
267 @prohibit='\<setfacl .*-m.*:.*:[rwx-]{1,2} ' \
268 halt='setfacl mode string length < 3; extend with hyphen(s)' \
269 $(_sc_search_regexp)
271 # Ensure that "stdio--.h" is used where appropriate.
272 sc_require_stdio_safer:
273 @if $(VC_LIST_EXCEPT) | grep -l '\.[ch]$$' > /dev/null; then \
274 files=$$(grep -l '\bfreopen \?(' $$($(VC_LIST_EXCEPT) \
275 | grep '\.[ch]$$')); \
276 test -n "$$files" && grep -LE 'include "stdio--.h"' $$files \
277 | grep . && \
278 { echo '$(ME): the above files should use "stdio--.h"' \
279 1>&2; exit 1; } || :; \
280 else :; \
283 sc_prohibit_perl_hash_quotes:
284 @prohibit="\{'[A-Z_]+' *[=}]" \
285 halt="in Perl code, write \$$hash{KEY}, not \$$hash{'K''EY'}" \
286 $(_sc_search_regexp)
288 # Prefer xnanosleep over other less-precise sleep methods
289 sc_prohibit_sleep:
290 @prohibit='\<(nano|u)?sleep \(' \
291 halt='prefer xnanosleep over other sleep interfaces' \
292 $(_sc_search_regexp)
294 # Use print_ver_ (from init.cfg), not open-coded $VERBOSE check.
295 sc_prohibit_verbose_version:
296 @prohibit='test "\$$VERBOSE" = yes && .* --version' \
297 halt='use the print_ver_ function instead...' \
298 $(_sc_search_regexp)
300 # Use framework_failure_, not the old name without the trailing underscore.
301 sc_prohibit_framework_failure:
302 @prohibit='\<framework_''failure\>' \
303 halt='use framework_failure_ instead' \
304 $(_sc_search_regexp)
306 # Exempt the contents of any usage function from the following.
307 _continued_string_col_1 = \
308 s/^usage .*?\n}//ms;/\\\n\w/ and print ("$$ARGV\n"),$$e=1;END{$$e||=0;exit $$e}
309 # Ding any source file that has a continued string with an alphabetic in the
310 # first column of the following line. We prohibit them because they usually
311 # trigger false positives in tools that try to map an arbitrary line number
312 # to the enclosing function name. Of course, very many strings do precisely
313 # this, *when they are part of the usage function*. That is why we exempt
314 # the contents of any function named "usage".
315 sc_prohibit_continued_string_alpha_in_column_1:
316 @perl -0777 -ne '$(_continued_string_col_1)' \
317 $$($(VC_LIST_EXCEPT) | grep '\.[ch]$$') \
318 || { echo '$(ME): continued string with word in first column' \
319 1>&2; exit 1; } || :
320 # Use this to list offending lines:
321 # git ls-files |grep '\.[ch]$' | xargs \
322 # perl -n -0777 -e 's/^usage.*?\n}//ms;/\\\n\w/ and print "$ARGV\n"' \
323 # | xargs grep -A1 '\\$'|grep '\.[ch][:-][_a-zA-Z]'
326 ###########################################################
327 _p0 = \([^"'/]\|"\([^\"]\|[\].\)*"\|'\([^\']\|[\].\)*'
328 _pre = $(_p0)\|[/][^"'/*]\|[/]"\([^\"]\|[\].\)*"\|[/]'\([^\']\|[\].\)*'\)*
329 _pre_anchored = ^\($(_pre)\)
330 _comment_and_close = [^*]\|[*][^/*]\)*[*][*]*/
331 # help font-lock mode: '
333 # A sed expression that removes ANSI C and ISO C99 comments.
334 # Derived from the one in GNU gettext's 'moopp' preprocessor.
335 _sed_remove_comments = \
336 /[/][/*]/{ \
337 ta; \
338 :a; \
339 s,$(_pre_anchored)//.*,\1,; \
340 te; \
341 s,$(_pre_anchored)/[*]\($(_comment_and_close),\1 ,; \
342 ta; \
343 /^$(_pre)[/][*]/{ \
344 s,$(_pre_anchored)/[*].*,\1 ,; \
345 tu; \
346 :u; \
347 n; \
348 s,^\($(_comment_and_close),,; \
349 tv; \
350 s,^.*$$,,; \
351 bu; \
352 :v; \
353 }; \
354 :e; \
356 # Quote all single quotes.
357 _sed_rm_comments_q = $(subst ','\'',$(_sed_remove_comments))
358 # help font-lock mode: '
360 _space_before_paren_exempt =? \\n\\$$
361 _space_before_paren_exempt = \
362 (^ *\#|\\n\\$$|%s\(to %s|(date|group|character)\(s\))
363 # Ensure that there is a space before each open parenthesis in C code.
364 sc_space_before_open_paren:
365 @if $(VC_LIST_EXCEPT) | grep -l '\.[ch]$$' > /dev/null; then \
366 fail=0; \
367 for c in $$($(VC_LIST_EXCEPT) | grep '\.[ch]$$'); do \
368 sed '$(_sed_rm_comments_q)' $$c 2>/dev/null \
369 | grep -i '[[:alnum:]](' \
370 | grep -vE '$(_space_before_paren_exempt)' \
371 | grep . && { fail=1; echo "*** $$c"; }; \
372 done; \
373 test $$fail = 1 && \
374 { echo '$(ME): the above files lack a space-before-open-paren' \
375 1>&2; exit 1; } || :; \
376 else :; \
379 # Similar to the gnulib maint.mk rule for sc_prohibit_strcmp
380 # Use STREQ_LEN or STRPREFIX rather than comparing strncmp == 0, or != 0.
381 sc_prohibit_strncmp:
382 @grep -nE '! *str''ncmp *\(|\<str''ncmp *\(.+\) *[!=]=' \
383 $$($(VC_LIST_EXCEPT)) \
384 | grep -vE ':# *define STR(N?EQ_LEN|PREFIX)\(' && \
385 { echo '$(ME): use STREQ_LEN or STRPREFIX instead of str''ncmp' \
386 1>&2; exit 1; } || :
388 # Enforce recommended preprocessor indentation style.
389 sc_preprocessor_indentation:
390 @if cppi --version >/dev/null 2>&1; then \
391 $(VC_LIST_EXCEPT) | grep '\.[ch]$$' | xargs cppi -a -c \
392 || { echo '$(ME): incorrect preprocessor indentation' 1>&2; \
393 exit 1; }; \
394 else \
395 echo '$(ME): skipping test $@: cppi not installed' 1>&2; \
398 # Override the default Cc: used in generating an announcement.
399 announcement_Cc_ = $(translation_project_), \
400 coreutils@gnu.org, coreutils-announce@gnu.org
402 -include $(srcdir)/dist-check.mk
404 update-copyright-env = \
405 UPDATE_COPYRIGHT_FORCE=1 \
406 UPDATE_COPYRIGHT_USE_INTERVALS=2 \
407 UPDATE_COPYRIGHT_MAX_LINE_LENGTH=79
409 # List syntax-check exemptions.
410 exclude_file_name_regexp--sc_space_tab = \
411 ^(tests/pr/|tests/misc/nl$$|gl/.*\.diff$$)
412 exclude_file_name_regexp--sc_bindtextdomain = ^(gl/.*|lib/euidaccess-stat)\.c$$
413 exclude_file_name_regexp--sc_unmarked_diagnostics = ^build-aux/cvsu$$
414 exclude_file_name_regexp--sc_error_message_uppercase = ^build-aux/cvsu$$
415 exclude_file_name_regexp--sc_trailing_blank = ^tests/pr/
416 exclude_file_name_regexp--sc_system_h_headers = \
417 ^src/((system|copy)\.h|libstdbuf\.c)$$
419 _src = (false|lbracket|ls-(dir|ls|vdir)|tac-pipe|uname-(arch|uname))
420 exclude_file_name_regexp--sc_require_config_h_first = \
421 (^lib/buffer-lcm\.c|src/$(_src)\.c)$$
422 exclude_file_name_regexp--sc_require_config_h = \
423 $(exclude_file_name_regexp--sc_require_config_h_first)
425 exclude_file_name_regexp--sc_po_check = ^gl/
426 exclude_file_name_regexp--sc_prohibit_always-defined_macros = \
427 ^src/(seq|remove)\.c$$
428 exclude_file_name_regexp--sc_prohibit_empty_lines_at_EOF = ^tests/pr/
429 exclude_file_name_regexp--sc_program_name = ^(gl/.*|lib/euidaccess-stat)\.c$$
430 exclude_file_name_regexp--sc_file_system = \
431 NEWS|^(tests/init\.cfg|src/df\.c|tests/misc/df-P)$$
432 exclude_file_name_regexp--sc_prohibit_always_true_header_tests = \
433 ^m4/stat-prog\.m4$$
434 exclude_file_name_regexp--sc_prohibit_fail_0 = \
435 (^scripts/git-hooks/commit-msg|^tests/init\.sh|Makefile\.am|\.mk)$$
436 exclude_file_name_regexp--sc_prohibit_atoi_atof = ^lib/euidaccess-stat\.c$$
438 tbi_1 = ^tests/pr/|(^gl/lib/reg.*\.c\.diff|Makefile(\.am)?|\.mk|^man/help2man)$$
439 tbi_2 = ^scripts/git-hooks/(pre-commit|pre-applypatch|applypatch-msg)$$
440 exclude_file_name_regexp--sc_prohibit_tab_based_indentation = \
441 $(tbi_1)|$(tbi_2)
443 exclude_file_name_regexp--sc_preprocessor_indentation = \
444 ^(gl/lib/rand-isaac\.[ch]|gl/tests/test-rand-isaac\.c)$$
445 exclude_file_name_regexp--sc_prohibit_stat_st_blocks = \
446 ^(src/system\.h|tests/du/2g)$$
448 exclude_file_name_regexp--sc_prohibit_continued_string_alpha_in_column_1 = \
449 ^src/(system\.h|od\.c|printf\.c)$$