Home
last modified time | relevance | path

Searched refs:test_fn (Results 1 – 13 of 13) sorted by relevance

/third_party/openssl/test/testutil/
Ddriver.c29 int (*test_fn) (void); member
47 void add_test(const char *test_case_name, int (*test_fn) (void)) in add_test()
51 all_tests[num_tests].test_fn = test_fn; in add_test()
57 void add_all_tests(const char *test_case_name, int(*test_fn)(int idx), in add_all_tests()
62 all_tests[num_tests].param_test_fn = test_fn; in add_all_tests()
205 ret = all_tests[i].test_fn(); in run_tests()
/third_party/mindspore/tests/ut/cpp/pipeline/parse/
Dresolve_test.cc58 py::function test_fn = in TEST_F() local
60 FuncGraphPtr func_graph = ParsePythonCode(test_fn); in TEST_F()
/third_party/libffi/testsuite/libffi.call/
Dva_struct2.c29 test_fn (int n, ...) in test_fn() function
117 ffi_call(&cif, FFI_FN(test_fn), &res, args); in main()
Dva_struct1.c29 test_fn (int n, ...) in test_fn() function
115 ffi_call(&cif, FFI_FN(test_fn), &res, args); in main()
Dva_struct3.c29 test_fn (int n, ...) in test_fn() function
119 ffi_call(&cif, FFI_FN(test_fn), &res, args); in main()
Dva_1.c29 test_fn (int n, ...) in test_fn() function
190 ffi_call(&cif, FFI_FN(test_fn), &res, args); in main()
/third_party/libffi/testsuite/libffi.closures/
Dcls_struct_va1.c27 test_fn (ffi_cif* cif __UNUSED__, void* resp, in test_fn() function
106 CHECK(ffi_prep_closure_loc(pcl, &cif, test_fn, NULL, code) == FFI_OK); in main()
/third_party/python/Lib/test/
Dtest_complex.py549 def test(v, expected, test_fn=self.assertEqual): argument
550 test_fn(repr(v), expected)
551 test_fn(str(v), expected)
556 test(-(1+0j), '(-1+-0j)', test_fn=self.assertNotEqual)
577 def test(v, expected, test_fn=self.assertEqual): argument
578 test_fn(repr(v), expected)
579 test_fn(str(v), expected)
/third_party/gstreamer/gstplugins_base/tests/check/libs/
Ddiscoverer.c144 test_disco_sync_reuse (const gchar * test_fn, guint num, GstClockTime timeout) in test_disco_sync_reuse() argument
158 path = g_build_filename (GST_TEST_FILES_PATH, test_fn, NULL); in test_disco_sync_reuse()
/third_party/ltp/testcases/kernel/syscalls/fcntl/
Dfcntl36.c276 static void test_fn(void *f0(void *), void *f1(void *), in test_fn() function
386 test_fn(tcases[i].fn0, tcases[i].fn1, tcases[i].fn2, tcases[i].desc); in tests()
/third_party/skia/tests/
DSkSLInterpreterTest.cpp716 auto test_fn = [&](const SkSL::FunctionDefinition* fn, float in, float expected) { in DEF_TEST() local
726 test_fn(main, 3.0f, 6.0f); in DEF_TEST()
727 test_fn(dot3, 3.0f, 9.0f); in DEF_TEST()
728 test_fn(dot2, 3.0f, -1.0f); in DEF_TEST()
/third_party/openssl/test/
Dtestutil.h142 void add_test(const char *test_case_name, int (*test_fn) (void));
143 void add_all_tests(const char *test_case_name, int (*test_fn)(int idx), int num,
/third_party/libffi/
DChangeLog.old348 * testsuite/libffi.call/cls_struct_va1.c (test_fn): Likewise.