Searched refs:testcase (Results 1 - 3 of 3) sorted by relevance

/fuchsia/zircon/kernel/lib/unittest/
H A Dunittest.cpp79 // External references to the testcase registration tables.
86 " where case is a specific testcase name, or...\n"
96 const unittest_testcase_registration_t* testcase; local
97 for (testcase = __start_unittest_testcases;
98 testcase != __stop_unittest_testcases;
99 ++testcase) {
101 if (testcase->name) {
102 size_t namelen = strlen(testcase->name);
114 for (testcase = __start_unittest_testcases;
115 testcase !
125 run_unittest(const unittest_testcase_registration_t* testcase) argument
186 auto* testcase = static_cast<const unittest_testcase_registration_t*>(arg); local
193 run_testcase_in_thread(const unittest_testcase_registration_t* testcase) argument
237 const unittest_testcase_registration_t* testcase; local
[all...]
/fuchsia/zircon/system/utest/fs-bench/
H A Dfs-bench.cpp181 TestCaseInfo testcase;
182 testcase.sample_count = test_sample_count;
183 testcase.name = fbl::StringPrintf("%s/Bigfile/16Kbytes/%d-Ops",
185 testcase.teardown = false;
189 fbl::StringPrintf("%s/%d-Cycle/Write", testcase.name.c_str(), cycle + 1);
194 testcase.tests.push_back(fbl::move(write_test));
197 fbl::StringPrintf("%s/%d-Cycle/Read", testcase.name.c_str(), cycle + 1);
202 testcase.tests.push_back(fbl::move(read_test));
204 testcases.push_back(fbl::move(testcase));
217 TestCaseInfo testcase;
[all...]
/fuchsia/zircon/system/utest/blobfs-bench/
H A Dblobfs-bench.cpp346 TestCaseInfo testcase; local
347 testcase.teardown = false;
348 testcase.sample_count = kSampleCount;
363 testcase.tests.push_back(fbl::move(api_test));
379 testcase.tests.push_back(fbl::move(read_test));
382 testcases.push_back(fbl::move(testcase));

Completed in 27 milliseconds