@@ -158,6 +158,10 @@ def warn(message)
158
158
inform ( "WARNING" ) { message }
159
159
end
160
160
161
+ def phase ( name )
162
+ inform ( "Beginning the next phase of testing" ) { name }
163
+ end
164
+
161
165
# Assure that a platform exists and return its definition
162
166
def assured_platform ( purpose , name , config )
163
167
platform_definition = config . platform_definition ( name )
@@ -368,6 +372,7 @@ def choose_platform_set(config, reason, desired_platforms, library_properties)
368
372
369
373
# tests of sane library.properties values
370
374
def perform_property_tests ( cpp_library )
375
+ phase ( "library.properties validation" )
371
376
return inform ( "Skipping library.properties tests" ) { "as requested via command line" } if @cli_options [ :skip_library_properties ]
372
377
return inform ( "Skipping library.properties tests" ) { "as requested via environment" } unless ENV [ VAR_SKIP_LIBPROPS ] . nil?
373
378
return inform ( "Skipping library.properties tests" ) { "file not found" } unless cpp_library . library_properties?
@@ -394,6 +399,7 @@ def perform_property_tests(cpp_library)
394
399
395
400
# Unit test procedure
396
401
def perform_unit_tests ( cpp_library , file_config )
402
+ phase ( "Unit testing" )
397
403
if @cli_options [ :skip_unittests ]
398
404
inform ( "Skipping unit tests" ) { "as requested via command line" }
399
405
return
@@ -449,6 +455,7 @@ def perform_unit_tests(cpp_library, file_config)
449
455
end
450
456
451
457
def perform_example_compilation_tests ( cpp_library , config )
458
+ phase ( "Compilation of example sketches" )
452
459
if @cli_options [ :skip_compilation ]
453
460
inform ( "Skipping compilation of examples" ) { "as requested via command line" }
454
461
return
0 commit comments