diff options
author | SeongJae Park <sjpark@amazon.de> | 2019-12-20 05:14:04 +0000 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2019-12-23 10:52:40 -0700 |
commit | 8c0140facb380da5740182d189be0b0d9deadb3d (patch) | |
tree | ad8201cc830362da02577d95e707ba897701b1fa /tools/testing/kunit | |
parent | 1c68cbadf09f685e1ffc6cc4c9094e67131f9a2f (diff) |
kunit: Remove duplicated defconfig creation
'--defconfig' option is handled by the 'main() of the 'kunit.py' but
again handled in following 'run_tests()'. This commit removes this
duplicated handling of the option in the 'run_tests()'.
Signed-off-by: SeongJae Park <sjpark@amazon.de>
Reviewed-by: Brendan Higgins <brendanhiggins@google.com>
Tested-by: Brendan Higgins <brendanhiggins@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/kunit')
-rwxr-xr-x | tools/testing/kunit/kunit.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/testing/kunit/kunit.py b/tools/testing/kunit/kunit.py index efe06d621983..f8f26951cd1b 100755 --- a/tools/testing/kunit/kunit.py +++ b/tools/testing/kunit/kunit.py @@ -37,9 +37,6 @@ def create_default_kunitconfig(): def run_tests(linux: kunit_kernel.LinuxSourceTree, request: KunitRequest) -> KunitResult: - if request.defconfig: - create_default_kunitconfig() - config_start = time.time() success = linux.build_reconfig(request.build_dir) config_end = time.time() |