Home
last modified time | relevance | path

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

/third_party/openssl/test/testutil/
Ddriver.c32 int (*test_fn) (void); member
59 void add_test(const char *test_case_name, int (*test_fn) (void)) in add_test()
63 all_tests[num_tests].test_fn = test_fn; in add_test()
69 void add_all_tests(const char *test_case_name, int(*test_fn)(int idx), in add_all_tests()
74 all_tests[num_tests].param_test_fn = test_fn; in add_all_tests()
335 verdict = all_tests[i].test_fn(); in run_tests()
/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/libffi/testsuite/libffi.call/
Dva_struct1.c29 test_fn (int n, ...) in test_fn() function
115 ffi_call(&cif, FFI_FN(test_fn), &res, args); in main()
Dva_struct2.c29 test_fn (int n, ...) in test_fn() function
117 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/rust/crates/nix/test/
Dtest_mount.rs239 ( $($test_fn:ident),* ) => {{
243 print!("test test_mount::{} ... ", stringify!($test_fn));
244 $test_fn();
/third_party/libfuse/test/
Dutil.py36 test_fn=os.path.ismount): argument
39 if test_fn(mnt_dir):
Dtest_examples.py317 def test_fn(name): function
320 wait_for_mount(mount_process, mnt_file, test_fn)
390 test_fn=os.path.exists)
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dwith_array_pointers_arguments.h3 int test_fn(float a, int arr[20]);
Dwithout_array_pointers_arguments.h2 int test_fn(float a, int arr[20]);
/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/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dwith_array_pointers_arguments.rs9 pub fn test_fn( in test_fn() function
Dwithout_array_pointers_arguments.rs9 pub fn test_fn( in test_fn() function
/third_party/rust/crates/memoffset/src/
Doffset_of.rs343 const fn test_fn() -> usize { in const_fn_offset() function
354 assert_eq!([0; test_fn()].len(), 4); in const_fn_offset()
/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.h227 void add_test(const char *test_case_name, int (*test_fn) (void));
228 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.