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
4925c2ae
Commit
4925c2ae
authored
2 years ago
by
Alexander Popov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add more automatic tests (and increase the coverage)
parent
dc925368
master
…
v0.6.6
No related merge requests found
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
12 deletions
+13
-12
main.yml
.github/workflows/main.yml
+13
-12
No files found.
.github/workflows/main.yml
View file @
4925c2ae
...
...
@@ -37,13 +37,13 @@ jobs:
run
:
|
echo ">>>>> check all configs <<<<<"
CONFIG_DIR=`find /opt/hostedtoolcache/Python/ -name config_files`
CONFIGS=`find $CONFIG_DIR -type f | grep "\.config"`
K
CONFIGS=`find $CONFIG_DIR -type f | grep "\.config"`
COUNT=0
for C in $CONFIGS
for C in $
K
CONFIGS
do
COUNT=$(expr $COUNT + 1)
echo -e "\n>>>>> checking config number $COUNT <<<<<"
kconfig-hardened-check -c $C
kconfig-hardened-check -c $C
-l /proc/cmdline
done
echo -e "\n>>>>> checking $COUNT configs is done <<<<<"
...
...
@@ -76,24 +76,25 @@ jobs:
coverage run -a --branch bin/kconfig-hardened-check -p ARM -m verbose
coverage run -a --branch bin/kconfig-hardened-check -p ARM -m json
echo ">>>>> use local cmdline as an example <<<<<"
cat /proc/cmdline
echo ">>>>> check the example kconfig files and cmdline <<<<<"
cat /proc/cmdline
echo "l1tf=off mds=full randomize_kstack_offset=on iommu.passthrough=0" > ./cmdline_example
cat ./cmdline_example
CONFIG_DIR=`find . -name config_files`
CONFIGS=`find $CONFIG_DIR -type f | grep "\.config"`
K
CONFIGS=`find $CONFIG_DIR -type f | grep "\.config"`
COUNT=0
for C in $CONFIGS
for C in $
K
CONFIGS
do
COUNT=$(expr $COUNT + 1)
echo -e "\n>>>>> checking config number $COUNT <<<<<"
coverage run -a --branch bin/kconfig-hardened-check -c $C
coverage run -a --branch bin/kconfig-hardened-check -c $C -m verbose > /dev/null
coverage run -a --branch bin/kconfig-hardened-check -c $C -l /proc/cmdline
coverage run -a --branch bin/kconfig-hardened-check -c $C -l /proc/cmdline -m verbose > /dev/null
coverage run -a --branch bin/kconfig-hardened-check -c $C -l /proc/cmdline -m json
coverage run -a --branch bin/kconfig-hardened-check -c $C -l /proc/cmdline -m show_ok
coverage run -a --branch bin/kconfig-hardened-check -c $C -l /proc/cmdline -m show_fail
coverage run -a --branch bin/kconfig-hardened-check -c $C -l ./cmdline_example
coverage run -a --branch bin/kconfig-hardened-check -c $C -l ./cmdline_example -m verbose > /dev/null
coverage run -a --branch bin/kconfig-hardened-check -c $C -l ./cmdline_example -m json
coverage run -a --branch bin/kconfig-hardened-check -c $C -l ./cmdline_example -m show_ok
coverage run -a --branch bin/kconfig-hardened-check -c $C -l ./cmdline_example -m show_fail
done
echo -e "\n>>>>> checking $COUNT configs is done <<<<<"
...
...
This diff is collapsed.
Click to expand it.
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