Home | History | Annotate | Download | only in ctestfw

Lines Matching refs:tn

184 cleanUpTestTree(TestNode *tn)
186 if(tn->child != NULL) {
187 cleanUpTestTree(tn->child);
189 if(tn->sibling != NULL) {
190 cleanUpTestTree(tn->sibling);
193 free(tn);