diff options
author | SeongJae Park <sjpark@amazon.de> | 2019-12-20 06:14:06 +0100 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2019-12-23 18:52:41 +0100 |
commit | 609952c2afc9542b336cf9a72d4a09606e05fa2a (patch) | |
tree | cef0d8a49961c63e9eb45e1577c7a594fea317e5 /tools/testing/kunit/kunit_kernel.py | |
parent | kunit: Create default config in '--build_dir' (diff) | |
download | linux-609952c2afc9542b336cf9a72d4a09606e05fa2a.tar.xz linux-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_kernel.py')
-rw-r--r-- | tools/testing/kunit/kunit_kernel.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/kunit/kunit_kernel.py b/tools/testing/kunit/kunit_kernel.py index c04a12e2f711..a10c0c787bc1 100644 --- a/tools/testing/kunit/kunit_kernel.py +++ b/tools/testing/kunit/kunit_kernel.py @@ -140,10 +140,10 @@ class LinuxSourceTree(object): return False return True - def run_kernel(self, args=[], timeout=None, build_dir=None): + def run_kernel(self, args=[], timeout=None, build_dir=''): args.extend(['mem=256M']) process = self._ops.linux_bin(args, timeout, build_dir) - with open('test.log', 'w') as f: + with open(os.path.join(build_dir, 'test.log'), 'w') as f: for line in process.stdout: f.write(line.rstrip().decode('ascii') + '\n') yield line.rstrip().decode('ascii') |