[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1575242724-4937-5-git-send-email-sj38.park@gmail.com>
Date: Mon, 2 Dec 2019 08:25:22 +0900
From: SeongJae Park <sj38.park@...il.com>
To: brendanhiggins@...gle.com, shuah@...nel.org
Cc: corbet@....net, linux-kselftest@...r.kernel.org,
kunit-dev@...glegroups.com, linux-doc@...r.kernel.org,
linux-kernel@...r.kernel.org, SeongJae Park <sjpark@...zon.de>
Subject: [PATCH 4/6] kunit: Create default config in 'build_dir'
From: SeongJae Park <sjpark@...zon.de>
If both '--build_dir' and '--defconfig' are given, the handling of
'--defconfig' ignores '--build_dir' option. This commit modifies the
behavior to respect '--build_dir' option.
Signed-off-by: SeongJae Park <sjpark@...zon.de>
---
tools/testing/kunit/kunit.py | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tools/testing/kunit/kunit.py b/tools/testing/kunit/kunit.py
index f8f2695..1746330 100755
--- a/tools/testing/kunit/kunit.py
+++ b/tools/testing/kunit/kunit.py
@@ -114,6 +114,11 @@ def main(argv, linux=None):
cli_args = parser.parse_args(argv)
if cli_args.subcommand == 'run':
+ if cli_args.build_dir:
+ kunit_kernel.KUNITCONFIG_PATH = os.path.join(
+ cli_args.build_dir,
+ kunit_kernel.KUNITCONFIG_PATH)
+
if cli_args.defconfig:
create_default_kunitconfig()
--
2.7.4
Powered by blists - more mailing lists