sanitycheck: set extra_args from command line
Missed setting extra_args coming from command line in the testsuite. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
75621c3b45
commit
cd1f017468
1 changed files with 3 additions and 0 deletions
|
@ -1877,6 +1877,8 @@ class CMake():
|
|||
cmake_opts = ['-DBOARD={}'.format(self.platform.name)]
|
||||
cmake_args.extend(cmake_opts)
|
||||
|
||||
|
||||
logger.debug("Calling cmake with arguments: {}".format(cmake_args))
|
||||
cmake = shutil.which('cmake')
|
||||
cmd = [cmake] + cmake_args
|
||||
kwargs = dict()
|
||||
|
@ -4040,6 +4042,7 @@ def main():
|
|||
suite.coverage_platform = options.coverage_platform
|
||||
suite.inline_logs = options.inline_logs
|
||||
suite.enable_size_report = options.enable_size_report
|
||||
suite.extra_args = options.extra_args
|
||||
|
||||
# Set number of jobs
|
||||
if options.jobs:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue