@@ -37,8 +37,16 @@ static void reindex(TestState *);
void
run_test(TestState *s, TestResult (*t)(TestState *))
{
if (!(s && t)) return;
if (!s) return;
s->run++;
// a null test function is a pending test
if (!t)
s->pending++;
return;
}
switch ((*t)(s))
case test_success:
The note is not visible to the blocked user.