7a86c2a491837b867dcf47de6ce8a287f90b99c0
[platform/upstream/coreutils.git] / cfg.mk
1 # Customize maint.mk                           -*- makefile -*-
2 # Copyright (C) 2003-2012 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>.
16
17 # Used in maint.mk's web-manual rule
18 manual_title = Core GNU utilities
19
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)
23
24 # Tests not to run as part of "make distcheck".
25 local-checks-to-skip = \
26   sc_texinfo_acronym
27
28 # Tools used to bootstrap this package, used for "announcement".
29 bootstrap-tools = autoconf,automake,gnulib,bison
30
31 # Now that we have better tests, make this the default.
32 export VERBOSE = yes
33
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
47
48 old_NEWS_hash = 4f70c9ef883feff18d9d5f66a941f3a8
49
50 # Add an exemption for sc_makefile_at_at_check.
51 _makefile_at_at_check_exceptions = ' && !/^cu_install_program =/'
52
53 # Our help-version script is in a slightly different location.
54 _hv_file ?= $(srcdir)/tests/misc/help-version
55
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; } || :
69
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;                                               \
84         fi
85 endif
86
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; } || :
95
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; } || :;                                          \
112         fi
113
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 $@
122
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
129
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; } || :;                                \
140         fi
141
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; } || :
148
149 ALL_RECURSIVE_TARGETS += sc_check-AUTHORS
150 sc_check-AUTHORS:
151         @$(MAKE) -s -C src _sc_check-AUTHORS
152
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) } || :
169
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 $@
178
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 $@
184
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; } || :
191
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; } || :;                                           \
201         fi
202
203 # With split lines, don't leave an operator at end of line.
204 # Instead, put it on the following line, where it is more apparent.
205 # Don't bother checking for "*" at end of line, since it provokes
206 # far too many false positives, matching constructs like "TYPE *".
207 # Similarly, omit "=" (initializers).
208 binop_re_ ?= [-/+^!<>]|[-/+*^!<>=]=|&&?|\|\|?|<<=?|>>=?
209 sc_prohibit_operator_at_end_of_line:
210         @prohibit='. ($(binop_re_))$$'                                  \
211         in_vc_files='\.[chly]$$'                                        \
212         halt='found operator at end of line'                            \
213           $(_sc_search_regexp)
214
215 # Don't use "readlink" or "readlinkat" directly
216 sc_prohibit_readlink:
217         @prohibit='\<readlink(at)? \('                                  \
218         halt='do not use readlink(at); use via xreadlink or areadlink*' \
219           $(_sc_search_regexp)
220
221 # Don't use address of "stat" or "lstat" functions
222 sc_prohibit_stat_macro_address:
223         @prohibit='\<l?stat '':|&l?stat\>'                              \
224         halt='stat() and lstat() may be function-like macros'           \
225           $(_sc_search_regexp)
226
227 # Ensure that date's --help output stays in sync with the info
228 # documentation for GNU strftime.  The only exception is %N,
229 # which date accepts but GNU strftime does not.
230 extract_char = sed 's/^[^%][^%]*%\(.\).*/\1/'
231 sc_strftime_check:
232         @if test -f $(srcdir)/src/date.c; then                          \
233           grep '^  %.  ' $(srcdir)/src/date.c | sort                    \
234             | $(extract_char) > $@-src;                                 \
235           { echo N;                                                     \
236             info libc date calendar format 2>/dev/null|grep '^    `%.'\'\
237               | $(extract_char); } | sort > $@-info;                    \
238           if test $$(stat --format %s $@-info) != 2; then               \
239             diff -u $@-src $@-info || exit 1;                           \
240           else                                                          \
241             echo '$(ME): skipping $@: libc info not installed' 1>&2;    \
242           fi;                                                           \
243           rm -f $@-src $@-info;                                         \
244         fi
245
246 # Indent only with spaces.
247 sc_prohibit_tab_based_indentation:
248         @prohibit='^ *  '                                               \
249         halt='TAB in indentation; use only spaces'                      \
250           $(_sc_search_regexp)
251
252 # The SEE ALSO section of a man page should not be terminated with
253 # a period.  Check the first line after each "SEE ALSO" line in man/*.x:
254 sc_prohibit_man_see_also_period:
255         @grep -nB1 '\.$$' $$($(VC_LIST_EXCEPT) | grep 'man/.*\.x$$')    \
256             | grep -A1 -e '-\[SEE ALSO\]' | grep '\.$$' &&              \
257           { echo '$(ME): do not end "SEE ALSO" section with a period'   \
258               1>&2; exit 1; } || :
259
260 # Don't use "indent-tabs-mode: nil" anymore.  No longer needed.
261 sc_prohibit_emacs__indent_tabs_mode__setting:
262         @prohibit='^( *[*#] *)?indent-tabs-mode:'                       \
263         halt='use of emacs indent-tabs-mode: setting'                   \
264           $(_sc_search_regexp)
265
266 # Ensure that each file that contains fail=1 also contains fail=0.
267 # Otherwise, setting file=1 in the environment would make tests fail
268 # unexpectedly.
269 sc_prohibit_fail_0:
270         @prohibit='\<fail=0\>'                                          \
271         halt='fail=0 initialization'                                    \
272           $(_sc_search_regexp)
273
274 # The mode part of a setfacl -m option argument must be three bytes long.
275 # I.e., an argument of user:bin:rw or user:bin:r will make Solaris 10's
276 # setfacl reject it with: "Unrecognized character found in mode field".
277 # Use hyphens to give it a length of 3: "...:rw-" or "...:r--".
278 sc_prohibit_short_facl_mode_spec:
279         @prohibit='\<setfacl .*-m.*:.*:[rwx-]{1,2} '                    \
280         halt='setfacl mode string length < 3; extend with hyphen(s)'    \
281           $(_sc_search_regexp)
282
283 # Ensure that "stdio--.h" is used where appropriate.
284 sc_require_stdio_safer:
285         @if $(VC_LIST_EXCEPT) | grep -l '\.[ch]$$' > /dev/null; then    \
286           files=$$(grep -l '\bfreopen \?(' $$($(VC_LIST_EXCEPT)         \
287               | grep '\.[ch]$$'));                                      \
288           test -n "$$files" && grep -LE 'include "stdio--.h"' $$files   \
289               | grep . &&                                               \
290           { echo '$(ME): the above files should use "stdio--.h"'        \
291                 1>&2; exit 1; } || :;                                   \
292         else :;                                                         \
293         fi
294
295 sc_prohibit_perl_hash_quotes:
296         @prohibit="\{'[A-Z_]+' *[=}]"                                   \
297         halt="in Perl code, write \$$hash{KEY}, not \$$hash{'K''EY'}"   \
298           $(_sc_search_regexp)
299
300 # Prefer xnanosleep over other less-precise sleep methods
301 sc_prohibit_sleep:
302         @prohibit='\<(nano|u)?sleep \('                                 \
303         halt='prefer xnanosleep over other sleep interfaces'            \
304           $(_sc_search_regexp)
305
306 # Use print_ver_ (from init.cfg), not open-coded $VERBOSE check.
307 sc_prohibit_verbose_version:
308         @prohibit='test "\$$VERBOSE" = yes && .* --version'             \
309         halt='use the print_ver_ function instead...'                   \
310           $(_sc_search_regexp)
311
312 # Use framework_failure_, not the old name without the trailing underscore.
313 sc_prohibit_framework_failure:
314         @prohibit='\<framework_''failure\>'                             \
315         halt='use framework_failure_ instead'                           \
316           $(_sc_search_regexp)
317
318 # Prohibit the use of `...` in tests/.  Use $(...) instead.
319 sc_prohibit_test_backticks:
320         @prohibit='`' in_vc_files='^tests/'                             \
321         halt='use $$(...), not `...` in tests/'                         \
322           $(_sc_search_regexp)
323
324 # Exempt the contents of any usage function from the following.
325 _continued_string_col_1 = \
326 s/^usage .*?\n}//ms;/\\\n\w/ and print ("$$ARGV\n"),$$e=1;END{$$e||=0;exit $$e}
327 # Ding any source file that has a continued string with an alphabetic in the
328 # first column of the following line.  We prohibit them because they usually
329 # trigger false positives in tools that try to map an arbitrary line number
330 # to the enclosing function name.  Of course, very many strings do precisely
331 # this, *when they are part of the usage function*.  That is why we exempt
332 # the contents of any function named "usage".
333 sc_prohibit_continued_string_alpha_in_column_1:
334         @perl -0777 -ne '$(_continued_string_col_1)' \
335             $$($(VC_LIST_EXCEPT) | grep '\.[ch]$$') \
336           || { echo '$(ME): continued string with word in first column' \
337                 1>&2; exit 1; } || :
338 # Use this to list offending lines:
339 # git ls-files |grep '\.[ch]$' | xargs \
340 #   perl -n -0777 -e 's/^usage.*?\n}//ms;/\\\n\w/ and print "$ARGV\n"' \
341 #     | xargs grep -A1 '\\$'|grep '\.[ch][:-][_a-zA-Z]'
342
343
344 ###########################################################
345 _p0 = \([^"'/]\|"\([^\"]\|[\].\)*"\|'\([^\']\|[\].\)*'
346 _pre = $(_p0)\|[/][^"'/*]\|[/]"\([^\"]\|[\].\)*"\|[/]'\([^\']\|[\].\)*'\)*
347 _pre_anchored = ^\($(_pre)\)
348 _comment_and_close = [^*]\|[*][^/*]\)*[*][*]*/
349 # help font-lock mode: '
350
351 # A sed expression that removes ANSI C and ISO C99 comments.
352 # Derived from the one in GNU gettext's 'moopp' preprocessor.
353 _sed_remove_comments =                                  \
354 /[/][/*]/{                                              \
355   ta;                                                   \
356   :a;                                                   \
357   s,$(_pre_anchored)//.*,\1,;                           \
358   te;                                                   \
359   s,$(_pre_anchored)/[*]\($(_comment_and_close),\1 ,;   \
360   ta;                                                   \
361   /^$(_pre)[/][*]/{                                     \
362     s,$(_pre_anchored)/[*].*,\1 ,;                      \
363     tu;                                                 \
364     :u;                                                 \
365     n;                                                  \
366     s,^\($(_comment_and_close),,;                       \
367     tv;                                                 \
368     s,^.*$$,,;                                          \
369     bu;                                                 \
370     :v;                                                 \
371   };                                                    \
372   :e;                                                   \
373 }
374 # Quote all single quotes.
375 _sed_rm_comments_q = $(subst ','\'',$(_sed_remove_comments))
376 # help font-lock mode: '
377
378 _space_before_paren_exempt =? \\n\\$$
379 _space_before_paren_exempt = \
380   (^ *\#|\\n\\$$|%s\(to %s|(date|group|character)\(s\))
381 # Ensure that there is a space before each open parenthesis in C code.
382 sc_space_before_open_paren:
383         @if $(VC_LIST_EXCEPT) | grep -l '\.[ch]$$' > /dev/null; then    \
384           fail=0;                                                       \
385           for c in $$($(VC_LIST_EXCEPT) | grep '\.[ch]$$'); do          \
386             sed '$(_sed_rm_comments_q)' $$c 2>/dev/null                 \
387               | grep -i '[[:alnum:]]('                                  \
388               | grep -vE '$(_space_before_paren_exempt)'                \
389               | grep . && { fail=1; echo "*** $$c"; };                  \
390           done;                                                         \
391           test $$fail = 1 &&                                            \
392             { echo '$(ME): the above files lack a space-before-open-paren' \
393                 1>&2; exit 1; } || :;                                   \
394         else :;                                                         \
395         fi
396
397 # Similar to the gnulib maint.mk rule for sc_prohibit_strcmp
398 # Use STREQ_LEN or STRPREFIX rather than comparing strncmp == 0, or != 0.
399 sc_prohibit_strncmp:
400         @grep -nE '! *str''ncmp *\(|\<str''ncmp *\(.+\) *[!=]='         \
401             $$($(VC_LIST_EXCEPT))                                       \
402           | grep -vE ':# *define STR(N?EQ_LEN|PREFIX)\(' &&             \
403           { echo '$(ME): use STREQ_LEN or STRPREFIX instead of str''ncmp' \
404                 1>&2; exit 1; } || :
405
406 # Enforce recommended preprocessor indentation style.
407 sc_preprocessor_indentation:
408         @if cppi --version >/dev/null 2>&1; then                        \
409           $(VC_LIST_EXCEPT) | grep '\.[ch]$$' | xargs cppi -a -c        \
410             || { echo '$(ME): incorrect preprocessor indentation' 1>&2; \
411                 exit 1; };                                              \
412         else                                                            \
413           echo '$(ME): skipping test $@: cppi not installed' 1>&2;      \
414         fi
415
416 # Override the default Cc: used in generating an announcement.
417 announcement_Cc_ = $(translation_project_), \
418   coreutils@gnu.org, coreutils-announce@gnu.org
419
420 -include $(srcdir)/dist-check.mk
421
422 update-copyright-env = \
423   UPDATE_COPYRIGHT_FORCE=1 \
424   UPDATE_COPYRIGHT_USE_INTERVALS=2 \
425   UPDATE_COPYRIGHT_MAX_LINE_LENGTH=79
426
427 # List syntax-check exemptions.
428 exclude_file_name_regexp--sc_space_tab = \
429   ^(tests/pr/|tests/misc/nl$$|gl/.*\.diff$$)
430 exclude_file_name_regexp--sc_bindtextdomain = ^(gl/.*|lib/euidaccess-stat)\.c$$
431 exclude_file_name_regexp--sc_unmarked_diagnostics =    ^build-aux/cvsu$$
432 exclude_file_name_regexp--sc_error_message_uppercase = ^build-aux/cvsu$$
433 exclude_file_name_regexp--sc_trailing_blank = ^tests/pr/
434 exclude_file_name_regexp--sc_system_h_headers = \
435   ^src/((system|copy)\.h|libstdbuf\.c)$$
436
437 _src = (false|lbracket|ls-(dir|ls|vdir)|tac-pipe|uname-(arch|uname))
438 exclude_file_name_regexp--sc_require_config_h_first = \
439   (^lib/buffer-lcm\.c|src/$(_src)\.c)$$
440 exclude_file_name_regexp--sc_require_config_h = \
441   $(exclude_file_name_regexp--sc_require_config_h_first)
442
443 exclude_file_name_regexp--sc_po_check = ^gl/
444 exclude_file_name_regexp--sc_prohibit_always-defined_macros = \
445   ^src/(seq|remove)\.c$$
446 exclude_file_name_regexp--sc_prohibit_empty_lines_at_EOF = ^tests/pr/
447 exclude_file_name_regexp--sc_program_name = ^(gl/.*|lib/euidaccess-stat)\.c$$
448 exclude_file_name_regexp--sc_file_system = \
449   NEWS|^(tests/init\.cfg|src/df\.c|tests/misc/df-P)$$
450 exclude_file_name_regexp--sc_prohibit_always_true_header_tests = \
451   ^m4/stat-prog\.m4$$
452 exclude_file_name_regexp--sc_prohibit_fail_0 = \
453   (^scripts/git-hooks/commit-msg|^tests/init\.sh|Makefile\.am|\.mk)$$
454 exclude_file_name_regexp--sc_prohibit_atoi_atof = ^lib/euidaccess-stat\.c$$
455
456 tbi_1 = ^tests/pr/|(^gl/lib/reg.*\.c\.diff|Makefile(\.am)?|\.mk|^man/help2man)$$
457 tbi_2 = ^scripts/git-hooks/(pre-commit|pre-applypatch|applypatch-msg)$$
458 exclude_file_name_regexp--sc_prohibit_tab_based_indentation = \
459   $(tbi_1)|$(tbi_2)
460
461 exclude_file_name_regexp--sc_preprocessor_indentation = \
462   ^(gl/lib/rand-isaac\.[ch]|gl/tests/test-rand-isaac\.c)$$
463 exclude_file_name_regexp--sc_prohibit_stat_st_blocks = \
464   ^(src/system\.h|tests/du/2g)$$
465
466 exclude_file_name_regexp--sc_prohibit_continued_string_alpha_in_column_1 = \
467   ^src/(system\.h|od\.c|printf\.c)$$
468
469 exclude_file_name_regexp--sc_prohibit_test_backticks = \
470   ^tests/(init\.sh|check\.mk|misc/stdbuf)$$
471
472 # Exempt test.c, since it's nominally shared, and relatively static.
473 exclude_file_name_regexp--sc_prohibit_operator_at_end_of_line = \
474   ^src/(ptx|test|head)\.c$$