mirror of https://github.com/Desuuuu/klipper.git
test: Extend white space check to verify files are valid utf-8
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
09a64d24f1
commit
7c7de85f01
|
@ -4,7 +4,7 @@
|
|||
# Copyright (C) 2018 Kevin O'Connor <kevin@koconnor.net>
|
||||
#
|
||||
# This file may be distributed under the terms of the GNU GPLv3 license.
|
||||
import sys, os.path
|
||||
import sys, os.path, unicodedata
|
||||
|
||||
HaveError = False
|
||||
|
||||
|
@ -28,10 +28,16 @@ def check_file(filename):
|
|||
# Do checks
|
||||
lineno = 0
|
||||
for lineno, line in enumerate(data.split('\n')):
|
||||
# Verify line is valid utf-8
|
||||
try:
|
||||
line = line.decode('utf-8')
|
||||
except UnicodeDecodeError:
|
||||
report_error(filename, lineno, "Non utf-8 character")
|
||||
continue
|
||||
# Check for control characters
|
||||
for c in line:
|
||||
oc = ord(c)
|
||||
if oc < 32:
|
||||
if oc < 32 or unicodedata.category(c).startswith('C'):
|
||||
char_name = repr(c)
|
||||
if oc == 9:
|
||||
if os.path.basename(filename).lower() == 'makefile':
|
||||
|
|
Loading…
Reference in New Issue