Home
last modified time | relevance | path

Searched refs:test_name (Results 1 – 4 of 4) sorted by relevance

/bionic/tools/versioner/
Drun_tests.py21 def run_test(test_name, path): argument
31 print("{} {}: unexpected success:".format(prefix_fail, test_name))
40 prefix_fail, test_name))
48 print("{} {}: unexpected failure:".format(prefix_fail, test_name))
53 print("{} {}".format(prefix_pass, test_name))
/bionic/tests/
Ddlfcn_symlink_support.h27 explicit DlfcnSymlink(const char* test_name) { in DlfcnSymlink() argument
28 create_dlfcn_test_symlink(test_name, &symlink_path_); in DlfcnSymlink()
Dgtest_main.cpp188 void AppendTest(const char* test_name) { in AppendTest() argument
189 test_list_.push_back(Test(test_name)); in AppendTest()
654 static void ChildProcessFn(int argc, char** argv, const std::string& test_name) { in ChildProcessFn() argument
658 char* filter_arg = new char [test_name.size() + 20]; in ChildProcessFn()
660 strcat(filter_arg, test_name.c_str()); in ChildProcessFn()
670 static ChildProcInfo RunChildProcess(const std::string& test_name, int testcase_id, int test_id, in RunChildProcess() argument
696 ChildProcessFn(argc, argv, test_name); in RunChildProcess()
705 child_proc.deadline_end_time_ns = child_proc.start_time_ns + GetTimeoutMs(test_name) * 1000000LL; in RunChildProcess()
720 … std::string test_name = testcase_list[child_proc.testcase_id].GetTestName(child_proc.test_id); in HandleSignals() local
723 printf(" %s (%" PRId64 " ms)\n", test_name.c_str(), run_time_ms); in HandleSignals()
[all …]
/bionic/libc/malloc_hooks/tests/
Dmalloc_hooks_tests.cpp92 void RunTest(std::string test_name);
136 void MallocHooksTest::RunTest(std::string test_name) { in RunTest() argument
139 std::string filter_arg("--gtest_filter=" + test_name); in RunTest()