From d2a511e1194a88a6c9d5635a957cfcebde6716d5 Mon Sep 17 00:00:00 2001 From: Nishanth Menon Date: Tue, 23 Apr 2024 08:06:16 -0500 Subject: [PATCH] kernel_patch_verify: Drop namespace check namespace check has been dropped since 2020 kernel commit 7dfbea4c468c ("scripts: remove namespace.pl"). Drop the same. Signed-off-by: Nishanth Menon --- kernel_patch_verify | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/kernel_patch_verify b/kernel_patch_verify index 02f7116..1a8890e 100755 --- a/kernel_patch_verify +++ b/kernel_patch_verify @@ -302,10 +302,6 @@ btest_stack() { kmake checkstack 1>&2 } -btest_namespace() { - kmake namespacecheck 1>&2 -} - btest_include() { kmake_single includecheck 1>&2 } @@ -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"