File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5
- refs/heads/try: 3f3339e07685769359a175c040307fba0202ca50
5
+ refs/heads/try: 30385022c1a7b265a746acb702e6fd1ee3d0e92f
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
Original file line number Diff line number Diff line change @@ -120,6 +120,7 @@ ALL_HS := $(filter-out $(S)src/rt/vg/valgrind.h \
120
120
tidy :
121
121
@$(call E, check: formatting)
122
122
$(Q ) find $(S ) src -name ' *.r[sc]' \
123
+ | grep ' ^$(S)src/test' -v \
123
124
| xargs -n 10 python $(S ) src/etc/tidy.py
124
125
$(Q ) find $(S ) src/etc -name ' *.py' \
125
126
| xargs -n 10 python $(S ) src/etc/tidy.py
Original file line number Diff line number Diff line change @@ -32,9 +32,7 @@ def report_err(s):
32
32
report_err ("trailing whitespace" )
33
33
line_len = len (line )- 2 if autocrlf else len (line )- 1
34
34
35
- # Along long lines if they are part of an expected error message
36
- # in a test, which is denoted with "//!":
37
- if line_len > cols and "//!" not in line :
35
+ if line_len > cols :
38
36
report_err ("line longer than %d chars" % cols )
39
37
except UnicodeDecodeError , e :
40
38
report_err ("UTF-8 decoding error " + str (e ))
You can’t perform that action at this time.
0 commit comments