mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #6968 from theotherjimmy/test-relpath
Test build: Reduce include command lengthpull/6993/head
commit
99df848e1c
|
@ -228,18 +228,23 @@ if __name__ == '__main__':
|
||||||
else:
|
else:
|
||||||
# Build all the tests
|
# Build all the tests
|
||||||
notify = TerminalNotifier(options.verbose)
|
notify = TerminalNotifier(options.verbose)
|
||||||
test_build_success, test_build = build_tests(tests, [options.build_dir], options.build_dir, mcu, toolchain,
|
test_build_success, test_build = build_tests(
|
||||||
clean=options.clean,
|
tests,
|
||||||
report=build_report,
|
[os.path.relpath(options.build_dir)],
|
||||||
properties=build_properties,
|
options.build_dir,
|
||||||
macros=options.macros,
|
mcu,
|
||||||
notify=notify,
|
toolchain,
|
||||||
jobs=options.jobs,
|
clean=options.clean,
|
||||||
continue_on_build_fail=options.continue_on_build_fail,
|
report=build_report,
|
||||||
app_config=config,
|
properties=build_properties,
|
||||||
build_profile=profile,
|
macros=options.macros,
|
||||||
stats_depth=options.stats_depth,
|
notify=notify,
|
||||||
ignore=options.ignore)
|
jobs=options.jobs,
|
||||||
|
continue_on_build_fail=options.continue_on_build_fail,
|
||||||
|
app_config=config,
|
||||||
|
build_profile=profile,
|
||||||
|
stats_depth=options.stats_depth,
|
||||||
|
ignore=options.ignore)
|
||||||
|
|
||||||
# If a path to a test spec is provided, write it to a file
|
# If a path to a test spec is provided, write it to a file
|
||||||
if options.test_spec:
|
if options.test_spec:
|
||||||
|
|
Loading…
Reference in New Issue