Skip to content

Commit d2a511e

Browse files
committed
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 <[email protected]>
1 parent 9f3e23c commit d2a511e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

kernel_patch_verify

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -302,10 +302,6 @@ btest_stack() {
302302
kmake checkstack 1>&2
303303
}
304304

305-
btest_namespace() {
306-
kmake namespacecheck 1>&2
307-
}
308-
309305
btest_include() {
310306
kmake_single includecheck 1>&2
311307
}
@@ -344,7 +340,7 @@ tests_start() {
344340
if [ -n "$COMPLETE_TESTS" ]; then
345341
TESTS_ALL_SET="$TESTS_ALL_SET build_all"
346342
if [ $UBOOT_TESTING -eq 0 ]; then
347-
TESTS_ALL1_SET="btest_stack btest_namespace btest_include"
343+
TESTS_ALL1_SET="btest_stack btest_include"
348344
fi
349345
fi
350346
echo "Sequential tests to run: $TESTS_ALL_SET"

0 commit comments

Comments
 (0)