@@ -121,7 +121,7 @@ void GREENTEA_TESTCASE_FINISH(const char *test_case_name, const size_t passes, c
121
121
* LCOV support
122
122
*****************************************************************************
123
123
*/
124
- #ifdef YOTTA_CFG_DEBUG_OPTIONS_COVERAGE
124
+ #ifdef MBED_CFG_DEBUG_OPTIONS_COVERAGE
125
125
extern " C" void __gcov_flush (void );
126
126
extern bool coverage_report;
127
127
@@ -328,8 +328,8 @@ static void greentea_notify_hosttest(const char *host_test_name) {
328
328
* else to do). You can place it just before you return from your
329
329
* main() function.
330
330
*
331
- * Code coverage: If YOTTA_CFG_DEBUG_OPTIONS_COVERAGE is set in the
332
- * project via yotta build configuration function will output series
331
+ * Code coverage: If MEBD_CFG_DEBUG_OPTIONS_COVERAGE is set in the
332
+ * project via build configuration function will output series
333
333
* of code coverage messages GREENTEA_TEST_ENV_LCOV_START with code
334
334
* coverage binary data. This data is captured by Greentea and can
335
335
* be used to generate LCOV reports.
@@ -339,7 +339,7 @@ static void greentea_notify_hosttest(const char *host_test_name) {
339
339
*/
340
340
static void greentea_notify_completion (const int result) {
341
341
const char *val = result ? GREENTEA_TEST_ENV_SUCCESS : GREENTEA_TEST_ENV_FAILURE;
342
- #ifdef YOTTA_CFG_DEBUG_OPTIONS_COVERAGE
342
+ #ifdef MBED_CFG_DEBUG_OPTIONS_COVERAGE
343
343
coverage_report = true ;
344
344
__gcov_flush ();
345
345
coverage_report = false ;
@@ -352,7 +352,7 @@ static void greentea_notify_completion(const int result) {
352
352
* \brief Send to master greentea-client version
353
353
*/
354
354
static void greentea_notify_version () {
355
- greentea_send_kv (GREENTEA_TEST_ENV_HOST_TEST_VERSION, YOTTA_GREENTEA_CLIENT_VERSION_STRING );
355
+ greentea_send_kv (GREENTEA_TEST_ENV_HOST_TEST_VERSION, MBED_GREENTEA_CLIENT_VERSION_STRING );
356
356
}
357
357
358
358
/* *
0 commit comments