Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
kernel-hardening-checker
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
kernel-hardening-checker
Commits
c3954882
Commit
c3954882
authored
Jan 22, 2023
by
Alexander Popov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the pylint R1714 issues
No functional changes
parent
23538f7a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
__init__.py
kconfig_hardened_check/__init__.py
+2
-2
No files found.
kconfig_hardened_check/__init__.py
View file @
c3954882
...
...
@@ -66,7 +66,7 @@ class OptCheck:
'invalid expected value "{}" for "{}" check (1)'
.
format
(
expected
,
name
)
val_len
=
len
(
expected
.
split
())
if
val_len
==
3
:
assert
(
expected
==
'is not set'
or
expected
==
'is not off'
),
\
assert
(
expected
in
(
'is not set'
,
'is not off'
)
),
\
'invalid expected value "{}" for "{}" check (2)'
.
format
(
expected
,
name
)
elif
val_len
==
2
:
assert
(
expected
==
'is present'
),
\
...
...
@@ -266,7 +266,7 @@ class AND(ComplexOptCheck):
self
.
result
=
'FAIL: {} is not "{}"'
.
format
(
opt
.
name
,
opt
.
expected
)
elif
opt
.
result
==
'FAIL: is not present'
:
self
.
result
=
'FAIL: {} is not present'
.
format
(
opt
.
name
)
elif
opt
.
result
==
'FAIL: is off'
or
opt
.
result
==
'FAIL: is off, "0"'
:
elif
opt
.
result
in
(
'FAIL: is off'
,
'FAIL: is off, "0"'
)
:
self
.
result
=
'FAIL: {} is off'
.
format
(
opt
.
name
)
elif
opt
.
result
==
'FAIL: is off, not found'
:
self
.
result
=
'FAIL: {} is off, not found'
.
format
(
opt
.
name
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment