Lines Matching refs:TEST_ptr
33 if (!TEST_ptr(bio = BIO_new(BIO_s_file()))) in load_cert_pem()
36 (void)TEST_ptr(cert = PEM_read_bio_X509(bio, NULL, NULL, NULL)); in load_cert_pem()
217 ret = TEST_ptr(cert) in test_self_signed()
249 if (!TEST_ptr(eecert) in do_test_purpose()
250 || !TEST_ptr(untrcert) in do_test_purpose()
251 || !TEST_ptr(trcert) in do_test_purpose()
252 || !TEST_ptr(trusted) in do_test_purpose()
253 || !TEST_ptr(untrusted) in do_test_purpose()
254 || !TEST_ptr(ctx)) in do_test_purpose()
309 if (!TEST_ptr(certs_dir = test_get_argument(0))) { in setup_tests()
314 if (!TEST_ptr(roots_f = test_mk_file_path(certs_dir, "roots.pem")) in setup_tests()
315 || !TEST_ptr(untrusted_f = test_mk_file_path(certs_dir, "untrusted.pem")) in setup_tests()
316 || !TEST_ptr(bad_f = test_mk_file_path(certs_dir, "bad.pem")) in setup_tests()
317 || !TEST_ptr(good_f = test_mk_file_path(certs_dir, "rootCA.pem")) in setup_tests()
318 || !TEST_ptr(sroot_cert = test_mk_file_path(certs_dir, "sroot-cert.pem")) in setup_tests()
319 || !TEST_ptr(ca_cert = test_mk_file_path(certs_dir, "ca-cert.pem")) in setup_tests()
320 || !TEST_ptr(ee_cert = test_mk_file_path(certs_dir, "ee-cert.pem"))) in setup_tests()