Skip to content

Commit

Permalink
kernel_patch_verify: Drop namespace check
Browse files Browse the repository at this point in the history
namespace check has been dropped since 2020 kernel commit 7dfbea4c468c
("scripts: remove namespace.pl"). Drop the same.

Signed-off-by: Nishanth Menon <nm@ti.com>
  • Loading branch information
nmenon committed Apr 23, 2024
1 parent 9f3e23c commit d2a511e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions kernel_patch_verify
Original file line number Diff line number Diff line change
Expand Up @@ -302,10 +302,6 @@ btest_stack() {
kmake checkstack 1>&2
}

btest_namespace() {
kmake namespacecheck 1>&2
}

btest_include() {
kmake_single includecheck 1>&2
}
Expand Down Expand Up @@ -344,7 +340,7 @@ tests_start() {
if [ -n "$COMPLETE_TESTS" ]; then
TESTS_ALL_SET="$TESTS_ALL_SET build_all"
if [ $UBOOT_TESTING -eq 0 ]; then
TESTS_ALL1_SET="btest_stack btest_namespace btest_include"
TESTS_ALL1_SET="btest_stack btest_include"
fi
fi
echo "Sequential tests to run: $TESTS_ALL_SET"
Expand Down

0 comments on commit d2a511e

Please sign in to comment.