Lines Matching refs:runResult
24 static FuncRunResult runResult; \
30 runResult.numPassed = 0; \
31 runResult.numFailed = 0; \
32 runResult.numNotSupported = 0; \
33 runResult.numWarnings = 0; \
34 runResult.numWaived = 0; \
39 printf("Test run totals --- Passed[%d]\n", runResult.numPassed); \
40 printf("Test run totals --- Failed[%d]\n", runResult.numFailed); \
41 printf("Test run totals --- Notsupport[%d]\n", runResult.numNotSupported); \
42 printf("Test run totals --- Warnings[%d]\n", runResult.numWarnings); \
43 printf("Test run totals --- Waved[%d]\n", runResult.numWaived); \