[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20230125120812.5276-1-apantykhin@gmail.com>
Date: Wed, 25 Jan 2023 17:08:12 +0500
From: Alexander Pantyukhin <apantykhin@...il.com>
To: davidgow@...gle.com
Cc: dlatypov@...gle.com, brendan.higgins@...ux.dev,
linux-kselftest@...r.kernel.org, kunit-dev@...glegroups.com,
linux-kernel@...r.kernel.org, akpm@...ux-foundation.org,
Alexander Pantyukhin <apantykhin@...il.com>
Subject: [PATCH] tools/testing/kunit/kunit.py: substitute if with elif
No need to re-check for request.run_isolated with next if.
Signed-off-by: Alexander Pantyukhin <apantykhin@...il.com>
---
tools/testing/kunit/kunit.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/testing/kunit/kunit.py b/tools/testing/kunit/kunit.py
index 43fbe96318fe..2e20944eefb4 100755
--- a/tools/testing/kunit/kunit.py
+++ b/tools/testing/kunit/kunit.py
@@ -145,7 +145,7 @@ def exec_tests(linux: kunit_kernel.LinuxSourceTree, request: KunitExecRequest) -
tests = _list_tests(linux, request)
if request.run_isolated == 'test':
filter_globs = tests
- if request.run_isolated == 'suite':
+ elif request.run_isolated == 'suite':
filter_globs = _suites_from_test_list(tests)
# Apply the test-part of the user's glob, if present.
if '.' in request.filter_glob:
--
2.25.1
Powered by blists - more mailing lists