aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/kunit/kunit.py
diff options
context:
space:
mode:
authorSeongJae Park <sjpark@amazon.de>2019-12-20 05:14:06 +0000
committerShuah Khan <skhan@linuxfoundation.org>2019-12-23 10:52:41 -0700
commit609952c2afc9542b336cf9a72d4a09606e05fa2a (patch)
treecef0d8a49961c63e9eb45e1577c7a594fea317e5 /tools/testing/kunit/kunit.py
parentkunit: Create default config in '--build_dir' (diff)
downloadlinux-dev-609952c2afc9542b336cf9a72d4a09606e05fa2a.tar.xz
linux-dev-609952c2afc9542b336cf9a72d4a09606e05fa2a.zip
kunit: Place 'test.log' under the 'build_dir'
'kunit' writes the 'test.log' under the kernel source directory even though a 'build_dir' option is given. As users who use the option might expect the outputs to be placed under the specified directory, this commit modifies the logic to write the log file under the 'build_dir'. 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/kunit.py')
-rwxr-xr-xtools/testing/kunit/kunit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/kunit/kunit.py b/tools/testing/kunit/kunit.py
index 5b222418eacd..e4250c4b06fb 100755
--- a/tools/testing/kunit/kunit.py
+++ b/tools/testing/kunit/kunit.py
@@ -105,7 +105,7 @@ def main(argv, linux=None):
run_parser.add_argument('--build_dir',
help='As in the make command, it specifies the build '
'directory.',
- type=str, default=None, metavar='build_dir')
+ type=str, default='', metavar='build_dir')
run_parser.add_argument('--defconfig',
help='Uses a default kunitconfig.',