tests: fix false failure with disabled SELinux support
[coreutils.git] / cfg.mk
blob9e8e8ac4c870ad82f1a4a09895b9ae61e0c1d068
1 # Customize maint.mk -*- makefile -*-
2 # Copyright (C) 2003-2013 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_proper_name_utf8_requires_ICONV
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 = 6ae04dc3907ea1290f12e6b1507cc42c
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 @t1=sc-root.expected; t2=sc-root.actual; \
99 grep -nl '^ *require_root_$$' `$(VC_LIST) tests` | sort > $$t1; \
100 for t in $(all_root_tests); do echo $$t; done | sort > $$t2; \
101 st=0; diff -u $$t1 $$t2 || st=1; \
102 rm -f $$t1 $$t2; \
103 exit $$st
105 # Ensure that all version-controlled test cases are listed in $(all_tests).
106 sc_tests_list_consistency:
107 @bs="\\"; \
108 test_extensions_rx=`echo $(TEST_EXTENSIONS) \
109 | sed -e "s/ /|/g" -e "s/$$bs./$$bs$$bs./g"`; \
111 for t in $(all_tests); do echo $$t; done; \
112 cd $(top_srcdir); \
113 $(SHELL) build-aux/vc-list-files tests \
114 | grep -Ev '^tests/(factor/(run|create-test)|init)\.sh$$' \
115 | $(EGREP) "$$test_extensions_rx\$$"; \
116 } | sort | uniq -u | grep . && exit 1; :
118 # Ensure that all version-controlled test scripts are executable.
119 sc_tests_executable:
120 @test_extensions_rx=`echo $(TEST_EXTENSIONS) \
121 | sed -e "s/ / -o -name */g" -e "s/^/-name */"`; \
122 find tests/ \( $$test_extensions_rx \) \! -perm -111 -print \
123 | sed -e "s/^/$(ME): Please make test executable: /" | grep . \
124 && exit 1; :
126 # Create a list of regular expressions matching the names
127 # of files included from system.h. Exclude a couple.
128 .re-list:
129 @sed -n '/^# *include /s///p' $(srcdir)/src/system.h \
130 | grep -Ev 'sys/(param|file)\.h' \
131 | sed 's/ .*//;;s/^["<]/^# *include [<"]/;s/\.h[">]$$/\\.h[">]/' \
132 > $@-t
133 @mv $@-t $@
135 define gl_trap_
136 Exit () { set +e; (exit $$1); exit $$1; }; \
137 for sig in 1 2 3 13 15; do \
138 eval "trap 'Exit $$(expr $$sig + 128)' $$sig"; \
139 done
140 endef
142 # Files in src/ should not include directly any of
143 # the headers already included via system.h.
144 sc_system_h_headers: .re-list
145 @if test -f $(srcdir)/src/system.h; then \
146 trap 'rc=$$?; rm -f .re-list; exit $$rc' 0; \
147 $(gl_trap_); \
148 grep -nE -f .re-list \
149 $$($(VC_LIST_EXCEPT) | grep '^\($(srcdir)/\)\?src/') \
150 && { echo '$(ME): the above are already included via system.h'\
151 1>&2; exit 1; } || :; \
154 # Files in src/ should not use '%s' notation in format strings,
155 # i.e., single quotes around %s (or similar) should be avoided.
156 sc_prohibit_quotes_notation:
157 @cd $(srcdir)/src && GIT_PAGER= git grep -n "\".*[\`']%s'.*\"" *.c \
158 && { echo '$(ME): '"Use quote() to avoid quoted '%s' notation" 1>&2; \
159 exit 1; } \
160 || :
162 sc_sun_os_names:
163 @grep -nEi \
164 'solaris[^[:alnum:]]*2\.(7|8|9|[1-9][0-9])|sunos[^[:alnum:]][6-9]' \
165 $$($(VC_LIST_EXCEPT)) && \
166 { echo '$(ME): found misuse of Sun OS version numbers' 1>&2; \
167 exit 1; } || :
169 # Ensure that the list of programs and author names is accurate.
170 # We need a UTF8 locale. If a lack of locale support or a missing
171 # translation inhibits printing of UTF-8 names, just skip this test.
172 au_dotdot = authors-dotdot
173 au_actual = authors-actual
174 sc_check-AUTHORS: $(all_programs)
175 @locale=en_US.UTF-8; \
176 LC_ALL=$$locale ./src/cat --version \
177 | grep ' Torbjorn ' > /dev/null \
178 && { echo "$@: skipping this check"; exit 0; }; \
179 rm -f $(au_actual) $(au_dotdot); \
180 for i in `ls $(all_programs) \
181 | sed -e 's,^src/,,' -e 's,$(EXEEXT)$$,,' \
182 | sed /libstdbuf/d \
183 | $(ASSORT) -u`; do \
184 test "$$i" = '[' && continue; \
185 exe=$$i; \
186 if test "$$i" = install; then \
187 exe=ginstall; \
188 elif test "$$i" = test; then \
189 exe='['; \
190 fi; \
191 LC_ALL=$$locale ./src/$$exe --version \
192 | perl -0 -p -e 's/,\n/, /gm' \
193 | sed -n -e '/Written by /{ s//'"$$i"': /;' \
194 -e 's/,* and /, /; s/\.$$//; p; }'; \
195 done > $(au_actual) && \
196 sed -n '/^[^ ][^ ]*:/p' $(srcdir)/AUTHORS > $(au_dotdot) \
197 && diff $(au_actual) $(au_dotdot) \
198 && rm -f $(au_actual) $(au_dotdot)
200 # Each program with a non-ASCII author name must link with LIBICONV.
201 sc_check-I18N-AUTHORS:
202 @cd $(srcdir)/src && \
203 for i in $$(git grep -l -w proper_name_utf8 *.c|sed 's/\.c//'); do \
204 grep -E "^src_$${i}_LDADD"' .?= .*\$$\(LIBICONV\)' local.mk \
205 > /dev/null \
206 || { echo "$(ME): link rules for $$i do not include" \
207 '$$(LIBICONV)' 1>&2; exit 1; }; \
208 done
210 # Ensure %j is not used for intmax_t as it's not universally supported.
211 # There are issues on HPUX for example. But note that %ju was used between
212 # coreutils 8.13 (2011-10) and 8.20 (2012-10) without any reported issue,
213 # and the particular issue this check is associated with was for %*jx.
214 # So we may be able to relax this restriction soon.
215 sc_prohibit-j-printf-format:
216 @cd $(srcdir)/src && GIT_PAGER= git grep -n '%[0*]*j[udx]' *.c \
217 && { echo '$(ME): Use PRI*MAX instead of %j' 1>&2; exit 1; } \
218 || :
220 # Ensure the alternative __attribute (keyword) form isn't used as
221 # that form is not elided where required. Also ensure that we don't
222 # directly use attributes already defined by gnulib.
223 # TODO: move the check for _GL... attributes to gnulib.
224 sc_prohibit-gl-attributes:
225 @cd $(srcdir) && GIT_PAGER= git grep -En \
226 "__attribute |__(unused|pure|const)__" src gl/lib/*.[ch] \
227 && { echo '$(ME): Use _GL... attribute macros' 1>&2; exit 1; } \
228 || :
230 # Look for lines longer than 80 characters, except omit:
231 # - program-generated long lines in diff headers,
232 # - the help2man script copied from upstream,
233 # - tests involving long checksum lines, and
234 # - the 'pr' test cases.
235 LINE_LEN_MAX = 80
236 FILTER_LONG_LINES = \
237 /^[^:]*\.diff:[^:]*:@@ / d; \
238 \|^[^:]*man/help2man:| d; \
239 \|^[^:]*tests/misc/sha[0-9]*sum.*\.pl[-:]| d; \
240 \|^[^:]*tests/pr/|{ \|^[^:]*tests/pr/pr-tests:| !d; };
241 sc_long_lines:
242 @files=$$($(VC_LIST_EXCEPT)) \
243 halt='line(s) with more than $(LINE_LEN_MAX) characters; reindent'; \
244 for file in $$files; do \
245 expand $$file | grep -nE '^.{$(LINE_LEN_MAX)}.' | \
246 sed -e "s|^|$$file:|" -e '$(FILTER_LONG_LINES)'; \
247 done | grep . && { msg="$$halt" $(_sc_say_and_exit) } || :
249 # Option descriptions should not start with a capital letter.
250 # One could grep source directly as follows:
251 # grep -E " {2,6}-.*[^.] [A-Z][a-z]" $$($(VC_LIST_EXCEPT) | grep '\.c$$')
252 # but that would miss descriptions not on the same line as the -option.
253 sc_option_desc_uppercase: $(ALL_MANS)
254 @grep '^\\fB\\-' -A1 man/*.1 | LC_ALL=C grep '\.1.[A-Z][a-z]' \
255 && { echo 1>&2 '$@: found initial capitals in --help'; exit 1; } || :
257 # Ensure all man/*.[1x] files are present.
258 sc_man_file_correlation: check-x-vs-1 check-programs-vs-x
260 # Ensure that for each .x file in the 'man/' subdirectory, there is a
261 # corresponding .1 file in the definition of $(EXTRA_MANS).
262 # But since that expansion usually lacks programs like arch and hostname,
263 # add them here manually.
264 .PHONY: check-x-vs-1
265 check-x-vs-1:
266 @PATH=./src$(PATH_SEPARATOR)$$PATH; export PATH; \
267 t=$@-t; \
268 (cd $(srcdir)/man && ls -1 *.x) \
269 | sed 's/\.x$$//' | $(ASSORT) > $$t; \
270 (echo $(patsubst man/%,%,$(ALL_MANS)) \
271 | tr -s ' ' '\n' | sed 's/\.1$$//') \
272 | $(ASSORT) -u | diff - $$t || { rm $$t; exit 1; }; \
273 rm $$t
275 # Writing a portable rule to generate a manpage like '[.1' would be
276 # a nightmare, so filter that out.
277 all-progs-but-lbracket = $(filter-out [,$(patsubst src/%,%,$(all_programs)))
279 # Ensure that for each coreutils program there is a corresponding
280 # '.x' file in the 'man/' subdirectory.
281 .PHONY: check-programs-vs-x
282 check-programs-vs-x:
283 @status=0; \
284 for p in dummy $(all-progs-but-lbracket); do \
285 case $$p in *.so) continue;; esac; \
286 test $$p = dummy && continue; \
287 test $$p = ginstall && p=install || : ; \
288 test -f $(srcdir)/man/$$p.x \
289 || { echo missing $$p.x 1>&2; status=1; }; \
290 done; \
291 exit $$status
293 # Ensure that the end of each release's section is marked by two empty lines.
294 sc_NEWS_two_empty_lines:
295 @sed -n 4,/Noteworthy/p $(srcdir)/NEWS \
296 | perl -n0e '/(^|\n)\n\n\* Noteworthy/ or exit 1' \
297 || { echo '$(ME): use two empty lines to separate NEWS sections' \
298 1>&2; exit 1; } || :
300 # With split lines, don't leave an operator at end of line.
301 # Instead, put it on the following line, where it is more apparent.
302 # Don't bother checking for "*" at end of line, since it provokes
303 # far too many false positives, matching constructs like "TYPE *".
304 # Similarly, omit "=" (initializers).
305 binop_re_ ?= [-/+^!<>]|[-/+*^!<>=]=|&&?|\|\|?|<<=?|>>=?
306 sc_prohibit_operator_at_end_of_line:
307 @prohibit='. ($(binop_re_))$$' \
308 in_vc_files='\.[chly]$$' \
309 halt='found operator at end of line' \
310 $(_sc_search_regexp)
312 # Don't use "readlink" or "readlinkat" directly
313 sc_prohibit_readlink:
314 @prohibit='\<readlink(at)? \(' \
315 halt='do not use readlink(at); use via xreadlink or areadlink*' \
316 $(_sc_search_regexp)
318 # Don't use address of "stat" or "lstat" functions
319 sc_prohibit_stat_macro_address:
320 @prohibit='\<l?stat '':|&l?stat\>' \
321 halt='stat() and lstat() may be function-like macros' \
322 $(_sc_search_regexp)
324 # Ensure that date's --help output stays in sync with the info
325 # documentation for GNU strftime. The only exception is %N,
326 # which date accepts but GNU strftime does not.
327 extract_char = sed 's/^[^%][^%]*%\(.\).*/\1/'
328 sc_strftime_check:
329 @if test -f $(srcdir)/src/date.c; then \
330 grep '^ %. ' $(srcdir)/src/date.c | sort \
331 | $(extract_char) > $@-src; \
332 { echo N; \
333 info libc date calendar format 2>/dev/null|grep '^ `%.'\'\
334 | $(extract_char); } | sort > $@-info; \
335 if test $$(stat --format %s $@-info) != 2; then \
336 diff -u $@-src $@-info || exit 1; \
337 else \
338 echo '$(ME): skipping $@: libc info not installed' 1>&2; \
339 fi; \
340 rm -f $@-src $@-info; \
343 # Indent only with spaces.
344 sc_prohibit_tab_based_indentation:
345 @prohibit='^ * ' \
346 halt='TAB in indentation; use only spaces' \
347 $(_sc_search_regexp)
349 # The SEE ALSO section of a man page should not be terminated with
350 # a period. Check the first line after each "SEE ALSO" line in man/*.x:
351 sc_prohibit_man_see_also_period:
352 @grep -nB1 '\.$$' $$($(VC_LIST_EXCEPT) | grep 'man/.*\.x$$') \
353 | grep -A1 -e '-\[SEE ALSO\]' | grep '\.$$' && \
354 { echo '$(ME): do not end "SEE ALSO" section with a period' \
355 1>&2; exit 1; } || :
357 # Don't use "indent-tabs-mode: nil" anymore. No longer needed.
358 sc_prohibit_emacs__indent_tabs_mode__setting:
359 @prohibit='^( *[*#] *)?indent-tabs-mode:' \
360 halt='use of emacs indent-tabs-mode: setting' \
361 $(_sc_search_regexp)
363 # Ensure that tests don't include a redundant fail=0.
364 sc_prohibit_fail_0:
365 @prohibit='\<fail=0\>' \
366 halt='fail=0 initialization' \
367 $(_sc_search_regexp)
369 # The mode part of a setfacl -m option argument must be three bytes long.
370 # I.e., an argument of user:bin:rw or user:bin:r will make Solaris 10's
371 # setfacl reject it with: "Unrecognized character found in mode field".
372 # Use hyphens to give it a length of 3: "...:rw-" or "...:r--".
373 sc_prohibit_short_facl_mode_spec:
374 @prohibit='\<setfacl .*-m.*:.*:[rwx-]{1,2} ' \
375 halt='setfacl mode string length < 3; extend with hyphen(s)' \
376 $(_sc_search_regexp)
378 # Ensure that "stdio--.h" is used where appropriate.
379 sc_require_stdio_safer:
380 @if $(VC_LIST_EXCEPT) | grep -l '\.[ch]$$' > /dev/null; then \
381 files=$$(grep -l '\bfreopen \?(' $$($(VC_LIST_EXCEPT) \
382 | grep '\.[ch]$$')); \
383 test -n "$$files" && grep -LE 'include "stdio--.h"' $$files \
384 | grep . && \
385 { echo '$(ME): the above files should use "stdio--.h"' \
386 1>&2; exit 1; } || :; \
387 else :; \
390 sc_prohibit_perl_hash_quotes:
391 @prohibit="\{'[A-Z_]+' *[=}]" \
392 halt="in Perl code, write \$$hash{KEY}, not \$$hash{'K''EY'}" \
393 $(_sc_search_regexp)
395 # Prefer xnanosleep over other less-precise sleep methods
396 sc_prohibit_sleep:
397 @prohibit='\<(nano|u)?sleep \(' \
398 halt='prefer xnanosleep over other sleep interfaces' \
399 $(_sc_search_regexp)
401 # Use print_ver_ (from init.cfg), not open-coded $VERBOSE check.
402 sc_prohibit_verbose_version:
403 @prohibit='test "\$$VERBOSE" = yes && .* --version' \
404 halt='use the print_ver_ function instead...' \
405 $(_sc_search_regexp)
407 # Use framework_failure_, not the old name without the trailing underscore.
408 sc_prohibit_framework_failure:
409 @prohibit='\<framework_''failure\>' \
410 halt='use framework_failure_ instead' \
411 $(_sc_search_regexp)
413 # Prohibit the use of `...` in tests/. Use $(...) instead.
414 sc_prohibit_test_backticks:
415 @prohibit='`' in_vc_files='^tests/' \
416 halt='use $$(...), not `...` in tests/' \
417 $(_sc_search_regexp)
419 # Programs like sort, ls, expr use PROG_FAILURE in place of EXIT_FAILURE.
420 # Others, use the EXIT_CANCELED, EXIT_ENOENT, etc. macros defined in system.h.
421 # In those programs, ensure that EXIT_FAILURE is not used by mistake.
422 sc_some_programs_must_avoid_exit_failure:
423 @grep -nw EXIT_FAILURE \
424 $$(git grep -El '[^T]_FAILURE|EXIT_CANCELED' src) \
425 | grep -vE '= EXIT_FAILURE|exit \(.* \?' | grep . \
426 && { echo '$(ME): do not use EXIT_FAILURE in the above' \
427 1>&2; exit 1; } || :
429 # Ensure that tests call the require_ulimit_v_ function if using ulimit -v
430 sc_prohibit_test_ulimit_without_require_:
431 @(git grep -l require_ulimit_v_ tests; \
432 git grep -l 'ulimit -v' tests) \
433 | sort | uniq -u | grep . && { echo "$(ME): the above test(s)"\
434 " should match require_ulimit_v_ with ulimit -v" 1>&2; exit 1; } || :
436 # Ensure that tests call the print_ver_ function for programs which are
437 # actually used in that test.
438 sc_prohibit_test_calls_print_ver_with_irrelevant_argument:
439 @git grep -w print_ver_ tests \
440 | sed 's#:print_ver_##' \
441 | { fail=0; \
442 while read file name; do \
443 for i in $$name; do \
444 case "$$i" in install) i=ginstall;; esac; \
445 grep -w "$$i" $$file|grep -vw print_ver_|grep -q . \
446 || { fail=1; \
447 echo "*** Test: $$file, offending: $$i." 1>&2; };\
448 done; \
449 done; \
450 test $$fail = 0 || exit 1; \
451 } || { echo "$(ME): the above test(s) call print_ver_ for" \
452 "program(s) they don't use" 1>&2; exit 1; }
454 # Exempt the contents of any usage function from the following.
455 _continued_string_col_1 = \
456 s/^usage .*?\n}//ms;/\\\n\w/ and print ("$$ARGV\n"),$$e=1;END{$$e||=0;exit $$e}
457 # Ding any source file that has a continued string with an alphabetic in the
458 # first column of the following line. We prohibit them because they usually
459 # trigger false positives in tools that try to map an arbitrary line number
460 # to the enclosing function name. Of course, very many strings do precisely
461 # this, *when they are part of the usage function*. That is why we exempt
462 # the contents of any function named "usage".
463 sc_prohibit_continued_string_alpha_in_column_1:
464 @perl -0777 -ne '$(_continued_string_col_1)' \
465 $$($(VC_LIST_EXCEPT) | grep '\.[ch]$$') \
466 || { echo '$(ME): continued string with word in first column' \
467 1>&2; exit 1; } || :
468 # Use this to list offending lines:
469 # git ls-files |grep '\.[ch]$' | xargs \
470 # perl -n -0777 -e 's/^usage.*?\n}//ms;/\\\n\w/ and print "$ARGV\n"' \
471 # | xargs grep -A1 '\\$'|grep '\.[ch][:-][_a-zA-Z]'
474 ###########################################################
475 _p0 = \([^"'/]\|"\([^\"]\|[\].\)*"\|'\([^\']\|[\].\)*'
476 _pre = $(_p0)\|[/][^"'/*]\|[/]"\([^\"]\|[\].\)*"\|[/]'\([^\']\|[\].\)*'\)*
477 _pre_anchored = ^\($(_pre)\)
478 _comment_and_close = [^*]\|[*][^/*]\)*[*][*]*/
479 # help font-lock mode: '
481 # A sed expression that removes ANSI C and ISO C99 comments.
482 # Derived from the one in GNU gettext's 'moopp' preprocessor.
483 _sed_remove_comments = \
484 /[/][/*]/{ \
485 ta; \
486 :a; \
487 s,$(_pre_anchored)//.*,\1,; \
488 te; \
489 s,$(_pre_anchored)/[*]\($(_comment_and_close),\1 ,; \
490 ta; \
491 /^$(_pre)[/][*]/{ \
492 s,$(_pre_anchored)/[*].*,\1 ,; \
493 tu; \
494 :u; \
495 n; \
496 s,^\($(_comment_and_close),,; \
497 tv; \
498 s,^.*$$,,; \
499 bu; \
500 :v; \
501 }; \
502 :e; \
504 # Quote all single quotes.
505 _sed_rm_comments_q = $(subst ','\'',$(_sed_remove_comments))
506 # help font-lock mode: '
508 _space_before_paren_exempt =? \\n\\$$
509 _space_before_paren_exempt = \
510 (^ *\#|\\n\\$$|%s\(to %s|(date|group|character)\(s\))
511 # Ensure that there is a space before each open parenthesis in C code.
512 sc_space_before_open_paren:
513 @if $(VC_LIST_EXCEPT) | grep -l '\.[ch]$$' > /dev/null; then \
514 fail=0; \
515 for c in $$($(VC_LIST_EXCEPT) | grep '\.[ch]$$'); do \
516 sed '$(_sed_rm_comments_q)' $$c 2>/dev/null \
517 | grep -i '[[:alnum:]](' \
518 | grep -vE '$(_space_before_paren_exempt)' \
519 | grep . && { fail=1; echo "*** $$c"; }; \
520 done; \
521 test $$fail = 1 && \
522 { echo '$(ME): the above files lack a space-before-open-paren' \
523 1>&2; exit 1; } || :; \
524 else :; \
527 # Similar to the gnulib maint.mk rule for sc_prohibit_strcmp
528 # Use STREQ_LEN or STRPREFIX rather than comparing strncmp == 0, or != 0.
529 sc_prohibit_strncmp:
530 @grep -nE '! *str''ncmp *\(|\<str''ncmp *\(.+\) *[!=]=' \
531 $$($(VC_LIST_EXCEPT)) \
532 | grep -vE ':# *define STR(N?EQ_LEN|PREFIX)\(' && \
533 { echo '$(ME): use STREQ_LEN or STRPREFIX instead of str''ncmp' \
534 1>&2; exit 1; } || :
536 # Enforce recommended preprocessor indentation style.
537 sc_preprocessor_indentation:
538 @if cppi --version >/dev/null 2>&1; then \
539 $(VC_LIST_EXCEPT) | grep '\.[ch]$$' | xargs cppi -a -c \
540 || { echo '$(ME): incorrect preprocessor indentation' 1>&2; \
541 exit 1; }; \
542 else \
543 echo '$(ME): skipping test $@: cppi not installed' 1>&2; \
546 # THANKS.in is a list of name/email pairs for people who are mentioned in
547 # commit logs (and generated ChangeLog), but who are not also listed as an
548 # author of a commit. Name/email pairs of commit authors are automatically
549 # extracted from the repository. As a very minor factorization, when
550 # someone who was initially listed only in THANKS.in later authors a commit,
551 # this rule detects that their pair may now be removed from THANKS.in.
552 sc_THANKS_in_duplicates:
553 @{ git log --pretty=format:%aN | sort -u; \
554 cut -b-36 THANKS.in | sed '/^$$/d;s/ *$$//'; } \
555 | sort | uniq -d | grep . \
556 && { echo '$(ME): remove the above names from THANKS.in' \
557 1>&2; exit 1; } || :
559 # Look for developer diagnostics that are marked for translation.
560 # This won't find any for which devmsg's format string is on a separate line.
561 sc_marked_devdiagnostics:
562 @prohibit='\<devmsg *\(.*_\(' \
563 halt='found marked developer diagnostic(s)' \
564 $(_sc_search_regexp)
566 # Override the default Cc: used in generating an announcement.
567 announcement_Cc_ = $(translation_project_), \
568 coreutils@gnu.org, coreutils-announce@gnu.org
570 -include $(srcdir)/dist-check.mk
572 update-copyright-env = \
573 UPDATE_COPYRIGHT_FORCE=1 \
574 UPDATE_COPYRIGHT_USE_INTERVALS=2 \
575 UPDATE_COPYRIGHT_MAX_LINE_LENGTH=79
577 # List syntax-check exemptions.
578 exclude_file_name_regexp--sc_space_tab = \
579 ^(tests/pr/|tests/misc/nl\.sh$$|gl/.*\.diff$$|man/help2man$$)
580 exclude_file_name_regexp--sc_bindtextdomain = \
581 ^(gl/.*|lib/euidaccess-stat|src/make-prime-list)\.c$$
582 exclude_file_name_regexp--sc_trailing_blank = ^(tests/pr/|man/help2man)
583 exclude_file_name_regexp--sc_system_h_headers = \
584 ^src/((system|copy)\.h|libstdbuf\.c|make-prime-list\.c)$$
586 _src = (false|lbracket|ls-(dir|ls|vdir)|tac-pipe|uname-(arch|uname))
587 exclude_file_name_regexp--sc_require_config_h_first = \
588 (^lib/buffer-lcm\.c|src/$(_src)\.c)$$
589 exclude_file_name_regexp--sc_require_config_h = \
590 $(exclude_file_name_regexp--sc_require_config_h_first)
592 exclude_file_name_regexp--sc_po_check = ^(gl/|man/help2man)
593 exclude_file_name_regexp--sc_prohibit_always-defined_macros = \
594 ^src/(seq|remove)\.c$$
595 exclude_file_name_regexp--sc_prohibit_empty_lines_at_EOF = ^tests/pr/
596 exclude_file_name_regexp--sc_program_name = \
597 ^(gl/.*|lib/euidaccess-stat|src/make-prime-list)\.c$$
598 exclude_file_name_regexp--sc_file_system = \
599 NEWS|^(init\.cfg|src/df\.c|tests/df/df-P\.sh|tests/df/df-output\.sh)$$
600 exclude_file_name_regexp--sc_prohibit_always_true_header_tests = \
601 ^m4/stat-prog\.m4$$
602 exclude_file_name_regexp--sc_prohibit_fail_0 = \
603 (^.*/git-hooks/commit-msg|^tests/init\.sh|Makefile\.am|\.mk|.*\.texi)$$
604 exclude_file_name_regexp--sc_prohibit_atoi_atof = ^lib/euidaccess-stat\.c$$
606 # longlong.h is maintained elsewhere.
607 _ll = ^src/longlong\.h$$
608 exclude_file_name_regexp--sc_useless_cpp_parens = $(_ll)
609 exclude_file_name_regexp--sc_long_lines = $(_ll)
610 exclude_file_name_regexp--sc_space_before_open_paren = $(_ll)
612 tbi_1 = ^tests/pr/|(^gl/lib/reg.*\.c\.diff|\.mk|^man/help2man)$$
613 tbi_2 = ^scripts/git-hooks/(pre-commit|pre-applypatch|applypatch-msg)$$
614 tbi_3 = (GNU)?[Mm]akefile(\.am)?$$|$(_ll)
615 exclude_file_name_regexp--sc_prohibit_tab_based_indentation = \
616 $(tbi_1)|$(tbi_2)|$(tbi_3)
618 exclude_file_name_regexp--sc_preprocessor_indentation = \
619 ^(gl/lib/rand-isaac\.[ch]|gl/tests/test-rand-isaac\.c)$$|$(_ll)
620 exclude_file_name_regexp--sc_prohibit_stat_st_blocks = \
621 ^(src/system\.h|tests/du/2g\.sh)$$
623 exclude_file_name_regexp--sc_prohibit_continued_string_alpha_in_column_1 = \
624 ^src/(system\.h|od\.c|printf\.c|getlimits\.c)$$
626 exclude_file_name_regexp--sc_prohibit_test_backticks = \
627 ^tests/(local\.mk|(init|misc/stdbuf|factor/create-test)\.sh)$$
629 # Exempt test.c, since it's nominally shared, and relatively static.
630 exclude_file_name_regexp--sc_prohibit_operator_at_end_of_line = \
631 ^src/(ptx|test|head)\.c$$
633 exclude_file_name_regexp--sc_error_message_uppercase = ^src/factor\.c$$
634 exclude_file_name_regexp--sc_prohibit_atoi_atof = ^src/make-prime-list\.c$$
636 # Augment AM_CFLAGS to include our per-directory options:
637 AM_CFLAGS += $($(@D)_CFLAGS)
639 src_CFLAGS = $(WARN_CFLAGS)
640 lib_CFLAGS = $(GNULIB_WARN_CFLAGS)
641 gnulib-tests_CFLAGS = $(GNULIB_TEST_WARN_CFLAGS)
643 # Configuration to make the tight-scope syntax-check rule work with
644 # non-recursive make.
645 export _gl_TS_headers = $(srcdir)/cfg.mk
646 _gl_TS_dir = .
647 _gl_TS_obj_files = src/*.$(OBJEXT)
648 _gl_TS_other_headers = src/*.h
650 # Tell the tight_scope rule about an exceptional "extern" variable.
651 # Normally, the rule would detect its declaration, but that uses a
652 # different name, __clz_tab.
653 _gl_TS_unmarked_extern_vars = factor_clz_tab