Skip to content

Commit 15e372f

Browse files
committed
Review comment:
Removed superfluous debug prints from harness.cpp.
1 parent 710421d commit 15e372f

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

frameworks/utest/source/harness.cpp

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,26 +84,21 @@ bool Harness::run(const Specification& specification, size_t)
8484
bool Harness::run(const Specification& specification)
8585
{
8686
UTEST_LOG_FUNCTION();
87-
printf("here in harness::run 1\n");
8887
// check if a specification is currently running
8988
if (is_busy())
9089
return false;
91-
printf("here in harness::run 2\n");
9290

9391
// if the scheduler is invalid, this is the first time we are calling
9492
if (!is_scheduler_valid(scheduler))
9593
scheduler = utest_v1_get_scheduler();
96-
printf("here in harness::run 3\n");
9794

98-
// if the scheduler is still invalid, abort
95+
// if the scheduler is still invalid, abort
9996
if (!is_scheduler_valid(scheduler))
10097
return false;
101-
printf("here in harness::run 4\n");
10298

10399
// if the scheduler failed to initialize, abort
104100
if (scheduler.init() != 0)
105101
return false;
106-
printf("here in harness::run 5\n");
107102
test_cases = specification.cases;
108103
test_length = specification.length;
109104
defaults = specification.defaults;

0 commit comments

Comments
 (0)