Home
last modified time | relevance | path

Searched refs:expected_functions (Results 1 – 2 of 2) sorted by relevance

/system/extras/simpleperf/scripts/test/
Dtools_test.py112 expected_functions = []
118 expected_functions.append(line.strip())
119 self.assertEqual(len(expected_files), len(expected_functions))
122 expected_source = list(zip(expected_files, expected_lines, expected_functions))
/system/unwinding/libbacktrace/
Dbacktrace_test.cpp1192 std::list<std::string> expected_functions; in VerifyFunctionsFound() local
1193 expected_functions.push_back("test_recursive_call"); in VerifyFunctionsFound()
1194 expected_functions.push_back("test_level_one"); in VerifyFunctionsFound()
1195 expected_functions.push_back("test_level_two"); in VerifyFunctionsFound()
1196 expected_functions.push_back("test_level_three"); in VerifyFunctionsFound()
1197 expected_functions.push_back("test_level_four"); in VerifyFunctionsFound()
1199 for (const auto& expected_function : expected_functions) { in VerifyFunctionsFound()
1201 expected_functions.remove(found_function); in VerifyFunctionsFound()
1206 ASSERT_TRUE(expected_functions.empty()) << "Not all functions found in shared library."; in VerifyFunctionsFound()