Clone of official tools

Revision:
29:1210849dba19
Parent:
24:25bff2709c20
Child:
30:f12ce67666d0
--- a/test.py	Mon Aug 29 10:55:42 2016 +0100
+++ b/test.py	Mon Aug 29 11:18:36 2016 +0100
@@ -29,7 +29,7 @@
 from tools.test_api import test_path_to_name, find_tests, print_tests, build_tests, test_spec_from_test_builds
 from tools.options import get_default_options_parser
 from tools.build_api import build_project, build_library
-from tools.build_api import print_build_memory_usage_results
+from tools.build_api import print_build_memory_usage
 from tools.targets import TARGET_MAP
 from tools.utils import mkdir, ToolException, NotSupportedException, args_error
 from tools.test_exporters import ReportExporter, ResultExporterType
@@ -177,7 +177,8 @@
                                                 macros=options.macros,
                                                 verbose=options.verbose,
                                                 notify=notify,
-                                                archive=False)
+                                                archive=False,
+                                                remove_config_header_file=True)
 
                 library_build_success = True
             except ToolException, e:
@@ -230,7 +231,7 @@
             # Print memory map summary on screen
             if build_report:
                 print
-                print print_build_memory_usage_results(build_report)
+                print print_build_memory_usage(build_report)
 
             print_report_exporter = ReportExporter(ResultExporterType.PRINT, package="build")
             status = print_report_exporter.report(build_report)