Skip to content

Commit

Permalink
kunit: add --make_options
Browse files Browse the repository at this point in the history
The kunit.py utility builds an ARCH=um kernel and then runs it.  Add
optional --make_options flag to kunit.py allowing for the operator to
specify extra build options.

This allows use of the clang compiler for kunit:
  tools/testing/kunit/kunit.py run --defconfig \
    --make_options CC=clang --make_options HOSTCC=clang

Signed-off-by: Greg Thelen <[email protected]>
Reviewed-by: Brendan Higgins <[email protected]>
Reviewed-by: Nathan Chancellor <[email protected]>
Tested-by: David Gow <[email protected]>
Signed-off-by: Brendan Higgins <[email protected]>
Signed-off-by: Shuah Khan <[email protected]>
  • Loading branch information
gthelen authored and shuahkh committed Mar 23, 2020
1 parent 021ed9f commit 0476e69
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 14 deletions.
14 changes: 10 additions & 4 deletions tools/testing/kunit/kunit.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

KunitRequest = namedtuple('KunitRequest', ['raw_output','timeout', 'jobs',
'build_dir', 'defconfig',
'alltests'])
'alltests', 'make_options'])

KernelDirectoryPath = sys.argv[0].split('tools/testing/kunit/')[0]

Expand All @@ -49,7 +49,7 @@ def get_kernel_root_path():
def run_tests(linux: kunit_kernel.LinuxSourceTree,
request: KunitRequest) -> KunitResult:
config_start = time.time()
success = linux.build_reconfig(request.build_dir)
success = linux.build_reconfig(request.build_dir, request.make_options)
config_end = time.time()
if not success:
return KunitResult(KunitStatus.CONFIG_FAILURE, 'could not configure kernel')
Expand All @@ -59,7 +59,8 @@ def run_tests(linux: kunit_kernel.LinuxSourceTree,
build_start = time.time()
success = linux.build_um_kernel(request.alltests,
request.jobs,
request.build_dir)
request.build_dir,
request.make_options)
build_end = time.time()
if not success:
return KunitResult(KunitStatus.BUILD_FAILURE, 'could not build kernel')
Expand Down Expand Up @@ -125,6 +126,10 @@ def main(argv, linux=None):
help='Run all KUnit tests through allyesconfig',
action='store_true')

run_parser.add_argument('--make_options',
help='X=Y make option, can be repeated.',
action='append')

cli_args = parser.parse_args(argv)

if cli_args.subcommand == 'run':
Expand All @@ -149,7 +154,8 @@ def main(argv, linux=None):
cli_args.jobs,
cli_args.build_dir,
cli_args.defconfig,
cli_args.alltests)
cli_args.alltests,
cli_args.make_options)
result = run_tests(linux, request)
if result.status != KunitStatus.SUCCESS:
sys.exit(1)
Expand Down
24 changes: 14 additions & 10 deletions tools/testing/kunit/kunit_kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ def make_mrproper(self):
except subprocess.CalledProcessError as e:
raise ConfigError(e.output)

def make_olddefconfig(self, build_dir):
def make_olddefconfig(self, build_dir, make_options):
command = ['make', 'ARCH=um', 'olddefconfig']
if make_options:
command.extend(make_options)
if build_dir:
command += ['O=' + build_dir]
try:
Expand All @@ -68,8 +70,10 @@ def make_allyesconfig(self):
kunit_parser.print_with_timestamp(
'Starting Kernel with all configs takes a few minutes...')

def make(self, jobs, build_dir):
def make(self, jobs, build_dir, make_options):
command = ['make', 'ARCH=um', '--jobs=' + str(jobs)]
if make_options:
command.extend(make_options)
if build_dir:
command += ['O=' + build_dir]
try:
Expand Down Expand Up @@ -128,19 +132,19 @@ def validate_config(self, build_dir):
return False
return True

def build_config(self, build_dir):
def build_config(self, build_dir, make_options):
kconfig_path = get_kconfig_path(build_dir)
if build_dir and not os.path.exists(build_dir):
os.mkdir(build_dir)
self._kconfig.write_to_file(kconfig_path)
try:
self._ops.make_olddefconfig(build_dir)
self._ops.make_olddefconfig(build_dir, make_options)
except ConfigError as e:
logging.error(e)
return False
return self.validate_config(build_dir)

def build_reconfig(self, build_dir):
def build_reconfig(self, build_dir, make_options):
"""Creates a new .config if it is not a subset of the .kunitconfig."""
kconfig_path = get_kconfig_path(build_dir)
if os.path.exists(kconfig_path):
Expand All @@ -149,19 +153,19 @@ def build_reconfig(self, build_dir):
if not self._kconfig.is_subset_of(existing_kconfig):
print('Regenerating .config ...')
os.remove(kconfig_path)
return self.build_config(build_dir)
return self.build_config(build_dir, make_options)
else:
return True
else:
print('Generating .config ...')
return self.build_config(build_dir)
return self.build_config(build_dir, make_options)

def build_um_kernel(self, alltests, jobs, build_dir):
def build_um_kernel(self, alltests, jobs, build_dir, make_options):
if alltests:
self._ops.make_allyesconfig()
try:
self._ops.make_olddefconfig(build_dir)
self._ops.make(jobs, build_dir)
self._ops.make_olddefconfig(build_dir, make_options)
self._ops.make(jobs, build_dir, make_options)
except (ConfigError, BuildError) as e:
logging.error(e)
return False
Expand Down

0 comments on commit 0476e69

Please sign in to comment.