Home
last modified time | relevance | path

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

/art/test/testrunner/
Dtestrunner.py927 for test_info in failed_tests:
928 print_text(('%s\n%s\n' % (test_info[0], test_info[1])))
930 for failed_test in sorted([test_info[0] for test_info in failed_tests]):
/art/libprofile/profile/
Dprofile_compilation_info_test.cc771 ProfileCompilationInfo test_info; in TEST_F() local
772 AddMethod(&test_info, dex1, 1, Hotness::kFlagStartup); in TEST_F()
773 AddMethod(&test_info, dex1, 5, Hotness::kFlagPostStartup); in TEST_F()
774 AddMethod(&test_info, dex2, 2, Hotness::kFlagStartup); in TEST_F()
775 AddMethod(&test_info, dex2, 4, Hotness::kFlagPostStartup); in TEST_F()
786 run_test(test_info); in TEST_F()
790 ASSERT_TRUE(test_info.Save(GetFd(profile))); in TEST_F()
800 EXPECT_FALSE(test_info.GetMethodHotness(MethodReference(dex1, 11)).IsStartup()); in TEST_F()
804 test_info.MergeWith(merge_info); in TEST_F()
806 EXPECT_TRUE(test_info.GetMethodHotness(MethodReference(dex1, 11)).IsStartup()); in TEST_F()