File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -84,26 +84,21 @@ bool Harness::run(const Specification& specification, size_t)
84
84
bool Harness::run (const Specification& specification)
85
85
{
86
86
UTEST_LOG_FUNCTION ();
87
- printf (" here in harness::run 1\n " );
88
87
// check if a specification is currently running
89
88
if (is_busy ())
90
89
return false ;
91
- printf (" here in harness::run 2\n " );
92
90
93
91
// if the scheduler is invalid, this is the first time we are calling
94
92
if (!is_scheduler_valid (scheduler))
95
93
scheduler = utest_v1_get_scheduler ();
96
- printf (" here in harness::run 3\n " );
97
94
98
- // if the scheduler is still invalid, abort
95
+ // if the scheduler is still invalid, abort
99
96
if (!is_scheduler_valid (scheduler))
100
97
return false ;
101
- printf (" here in harness::run 4\n " );
102
98
103
99
// if the scheduler failed to initialize, abort
104
100
if (scheduler.init () != 0 )
105
101
return false ;
106
- printf (" here in harness::run 5\n " );
107
102
test_cases = specification.cases ;
108
103
test_length = specification.length ;
109
104
defaults = specification.defaults ;
You can’t perform that action at this time.
0 commit comments