[PATCH] kunit: Fix '--build_dir' option

From: SeongJae Park
Date: Fri Sep 06 2019 - 08:05:57 EST


kunit fails to run with '--build_dir' option because the option is not
properly sent to kernel running procedure. This commit fixes the
problem.

Signed-off-by: SeongJae Park <sj38.park@xxxxxxxxx>
---
tools/testing/kunit/kunit.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tools/testing/kunit/kunit.py b/tools/testing/kunit/kunit.py
index 8d33980..e016430 100755
--- a/tools/testing/kunit/kunit.py
+++ b/tools/testing/kunit/kunit.py
@@ -62,9 +62,11 @@ def run_tests(linux: kunit_kernel.LinuxSourceTree,
'Tests not Parsed.')
if request.raw_output:
kunit_parser.raw_output(
- linux.run_kernel(timeout=request.timeout))
+ linux.run_kernel(timeout=request.timeout,
+ build_dir=request.build_dir))
else:
- kunit_output = linux.run_kernel(timeout=request.timeout)
+ kunit_output = linux.run_kernel(timeout=request.timeout,
+ build_dir=request.build_dir)
test_result = kunit_parser.parse_run_tests(kunit_output)
test_end = time.time()

--
2.7.4