|
77 | 77 | from tools.utils import argparse_lowercase_type
|
78 | 78 | from tools.utils import argparse_many
|
79 | 79 | from tools.notifier.mock import MockNotifier
|
| 80 | +from tools.notifier.term import TerminalNotifier |
80 | 81 |
|
81 | 82 | import tools.host_tests.host_tests_plugins as host_tests_plugins
|
82 | 83 |
|
@@ -386,7 +387,8 @@ def execute_thread_slice(self, q, target, toolchains, clean, test_ids, build_rep
|
386 | 387 | jobs=self.opts_jobs,
|
387 | 388 | report=build_report,
|
388 | 389 | properties=build_properties,
|
389 |
| - build_profile=profile) |
| 390 | + build_profile=profile, |
| 391 | + notify=TerminalNotifier()) |
390 | 392 |
|
391 | 393 | if not build_mbed_libs_result:
|
392 | 394 | print(self.logger.log_line(
|
@@ -466,7 +468,8 @@ def execute_thread_slice(self, q, target, toolchains, clean, test_ids, build_rep
|
466 | 468 | jobs=self.opts_jobs,
|
467 | 469 | report=build_report,
|
468 | 470 | properties=build_properties,
|
469 |
| - build_profile=profile) |
| 471 | + build_profile=profile, |
| 472 | + notify=TerminalNotifier()) |
470 | 473 |
|
471 | 474 | except ToolException:
|
472 | 475 | print(self.logger.log_line(
|
@@ -505,13 +508,16 @@ def execute_thread_slice(self, q, target, toolchains, clean, test_ids, build_rep
|
505 | 508 |
|
506 | 509 | project_name = self.opts_firmware_global_name if self.opts_firmware_global_name else None
|
507 | 510 | try:
|
508 |
| - path = build_project(test.source_dir, join(build_dir, test_id), T, |
| 511 | + path = build_project( |
| 512 | + test.source_dir, join(build_dir, test_id), T, |
509 | 513 | toolchain, test.dependencies, clean=clean_project_options,
|
510 | 514 | name=project_name, macros=MACROS,
|
511 | 515 | inc_dirs=INC_DIRS, jobs=self.opts_jobs, report=build_report,
|
512 | 516 | properties=build_properties, project_id=test_id,
|
513 | 517 | project_description=test.get_description(),
|
514 |
| - build_profile=profile, stats_depth=stats_depth) |
| 518 | + build_profile=profile, stats_depth=stats_depth, |
| 519 | + notify=TerminalNotifier(), |
| 520 | + ) |
515 | 521 |
|
516 | 522 | except Exception as e:
|
517 | 523 | project_name_str = project_name if project_name is not None else test_id
|
|
0 commit comments