Commit ddbd60c7 authored by Vitor Massaru Iha's avatar Vitor Massaru Iha Committed by Shuah Khan

kunit: use --build_dir=.kunit as default

To make KUnit easier to use, and to avoid overwriting object and
.config files, the default KUnit build directory is set to .kunit

 * Related bug: https://bugzilla.kernel.org/show_bug.cgi?id=205221

Fixed up minor merge conflicts - Shuah Khan <skhan@linuxfoundation.org>
Signed-off-by: default avatarVitor Massaru Iha <vitor@massaru.org>
Reviewed-by: default avatarBrendan Higgins <brendanhiggins@google.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent c4714b00
...@@ -169,7 +169,7 @@ def add_common_opts(parser): ...@@ -169,7 +169,7 @@ def add_common_opts(parser):
parser.add_argument('--build_dir', parser.add_argument('--build_dir',
help='As in the make command, it specifies the build ' help='As in the make command, it specifies the build '
'directory.', 'directory.',
type=str, default='', metavar='build_dir') type=str, default='.kunit', metavar='build_dir')
parser.add_argument('--make_options', parser.add_argument('--make_options',
help='X=Y make option, can be repeated.', help='X=Y make option, can be repeated.',
action='append') action='append')
...@@ -245,12 +245,11 @@ def main(argv, linux=None): ...@@ -245,12 +245,11 @@ def main(argv, linux=None):
cli_args = parser.parse_args(argv) cli_args = parser.parse_args(argv)
if cli_args.subcommand == 'run': if cli_args.subcommand == 'run':
if cli_args.build_dir: if not os.path.exists(cli_args.build_dir):
if not os.path.exists(cli_args.build_dir): os.mkdir(cli_args.build_dir)
os.mkdir(cli_args.build_dir) kunit_kernel.kunitconfig_path = os.path.join(
kunit_kernel.kunitconfig_path = os.path.join( cli_args.build_dir,
cli_args.build_dir, kunit_kernel.kunitconfig_path)
kunit_kernel.kunitconfig_path)
if not linux: if not linux:
linux = kunit_kernel.LinuxSourceTree() linux = kunit_kernel.LinuxSourceTree()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment