From 15e372f6efd26b8fb447edfb0684da0cf4976417 Mon Sep 17 00:00:00 2001 From: Anna Bridge Date: Thu, 19 May 2016 16:15:01 +0100 Subject: [PATCH] Review comment: Removed superfluous debug prints from harness.cpp. --- frameworks/utest/source/harness.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/frameworks/utest/source/harness.cpp b/frameworks/utest/source/harness.cpp index ac648883cb..b95274fc7e 100644 --- a/frameworks/utest/source/harness.cpp +++ b/frameworks/utest/source/harness.cpp @@ -84,26 +84,21 @@ bool Harness::run(const Specification& specification, size_t) bool Harness::run(const Specification& specification) { UTEST_LOG_FUNCTION(); -printf("here in harness::run 1\n"); // check if a specification is currently running if (is_busy()) return false; -printf("here in harness::run 2\n"); // if the scheduler is invalid, this is the first time we are calling if (!is_scheduler_valid(scheduler)) scheduler = utest_v1_get_scheduler(); -printf("here in harness::run 3\n"); -// if the scheduler is still invalid, abort + // if the scheduler is still invalid, abort if (!is_scheduler_valid(scheduler)) return false; -printf("here in harness::run 4\n"); // if the scheduler failed to initialize, abort if (scheduler.init() != 0) return false; -printf("here in harness::run 5\n"); test_cases = specification.cases; test_length = specification.length; defaults = specification.defaults;