Lines Matching defs:test
2 * Self-test demonstration program
209 * self-test. If this fails, we attempt the test anyway, so no error is passed
362 /* Heap test comes last */
373 const selftest_t *test;
526 for (test = selftests; test->name != NULL; test++) {
527 if (!strcmp(*argp, test->name)) {
528 if (test->function(v) != 0) {
535 if (test->name == NULL) {
542 for (test = selftests; test->name != NULL; test++) {
546 if (!strcmp(*excluded, test->name)) {
552 mbedtls_printf(" Skip: %s\n", test->name);
557 if (test->function(v) != 0) {
570 mbedtls_printf(" Executed %d test suites\n\n", suites_tested);