Searched refs:test_info (Results 1 - 10 of 10) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/gallium/tests/unit/
H A Du_prim_verts_test.c6 struct test_info { struct
12 struct test_info tests[] = {
34 struct test_info *info = &tests[i];
/xsrc/external/mit/libdrm/dist/tests/amdgpu/
H A Dshader_test_util.c89 void (*fn)(struct shader_test_info *test_info))
93 struct shader_test_info test_info = {0}; local in function:shader_test_for_each
106 test_info.version = AMDGPU_TEST_GFX_V9;
109 test_info.version = AMDGPU_TEST_GFX_V10;
112 test_info.version = AMDGPU_TEST_GFX_V11;
119 test_info.device_handle = device_handle;
120 test_info.ip = ip;
126 test_info.ring = ring_id;
127 fn(&test_info);
576 static void amdgpu_test_dispatch_memset(struct shader_test_info *test_info) argument
88 shader_test_for_each(amdgpu_device_handle device_handle,unsigned ip,void (* fn)(struct shader_test_info * test_info)) argument
693 amdgpu_test_dispatch_memcpy(struct shader_test_info * test_info) argument
831 shader_test_dispatch_cb(struct shader_test_info * test_info) argument
836 shader_test_dispatch_hang_cb(struct shader_test_info * test_info) argument
848 shader_test_dispatch_hang_slow_cb(struct shader_test_info * test_info) argument
1755 amdgpu_memset_draw_test(struct shader_test_info * test_info) argument
1916 amdgpu_memcpy_draw_test(struct shader_test_info * test_info) argument
2137 shader_test_draw_cb(struct shader_test_info * test_info) argument
2143 shader_test_draw_hang_cb(struct shader_test_info * test_info) argument
2155 shader_test_draw_hang_slow_cb(struct shader_test_info * test_info) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/
H A Dgtest.h746 static void ClearTestResult(TestInfo* test_info) { argument
747 test_info->result_.Clear();
872 void AddTestInfo(TestInfo * test_info);
894 static bool TestPassed(const TestInfo* test_info) { argument
895 return test_info->should_run() && test_info->result()->Passed();
899 static bool TestFailed(const TestInfo* test_info) { argument
900 return test_info->should_run() && test_info->result()->Failed();
905 static bool TestReportableDisabled(const TestInfo* test_info) { argument
910 TestDisabled(const TestInfo * test_info) argument
915 TestReportable(const TestInfo * test_info) argument
920 ShouldRunTest(const TestInfo * test_info) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/gtest/src/
H A Dgtest.cc2586 TestInfo* const test_info = local in function:testing::internal::MakeAndRegisterTestInfo
2589 GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info);
2590 return test_info;
2630 // Returns true if and only if the test name of test_info matches name_.
2631 bool operator()(const TestInfo * test_info) const {
2632 return test_info && test_info->name() == name_;
2789 void TestSuite::AddTestInfo(TestInfo* test_info) { argument
2790 test_info_list_.push_back(test_info);
3083 static void PrintFullTestCommentIfPresent(const TestInfo& test_info) { argument
3212 OnTestStart(const TestInfo & test_info) argument
3236 OnTestEnd(const TestInfo & test_info) argument
3301 const TestInfo& test_info = *test_suite.GetTestInfo(j); local in function:testing::internal::PrettyUnitTestResultPrinter::PrintFailedTests
3326 const TestInfo& test_info = *test_suite.GetTestInfo(j); local in function:testing::internal::PrettyUnitTestResultPrinter::PrintSkippedTests
3782 OutputXmlTestInfo(::std::ostream * stream,const char * test_suite_name,const TestInfo & test_info) argument
4161 OutputJsonTestInfo(::std::ostream * stream,const char * test_suite_name,const TestInfo & test_info) argument
5509 TestInfo* const test_info = test_suite->test_info_list()[j]; local in function:testing::internal::UnitTestImpl::FilterTests
5574 const TestInfo* const test_info = test_suite->test_info_list()[j]; local in function:testing::internal::UnitTestImpl::ListTestsMatchingFilter
[all...]
H A Dgtest-internal-inl.h672 // test_info: the TestInfo object
675 TestInfo* test_info) {
689 GetTestSuite(test_info->test_suite_name(), test_info->type_param(),
691 ->AddTestInfo(test_info);
1170 void OnTestStart(const TestInfo& test_info) override { argument
1171 SendLn(std::string("event=TestStart&name=") + test_info.name());
1174 void OnTestEnd(const TestInfo& test_info) override { argument
1176 FormatBool((test_info.result())->Passed()) +
1178 StreamableToString((test_info
673 AddTestInfo(internal::SetUpTestSuiteFunc set_up_tc,internal::TearDownTestSuiteFunc tear_down_tc,TestInfo * test_info) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/
H A Dgtest.h797 static void ClearTestResult(TestInfo* test_info) { argument
798 test_info->result_.Clear();
930 void AddTestInfo(TestInfo * test_info);
960 static bool TestPassed(const TestInfo* test_info) { argument
961 return test_info->should_run() && test_info->result()->Passed();
965 static bool TestSkipped(const TestInfo* test_info) { argument
966 return test_info->should_run() && test_info->result()->Skipped();
970 static bool TestFailed(const TestInfo* test_info) { argument
976 TestReportableDisabled(const TestInfo * test_info) argument
981 TestDisabled(const TestInfo * test_info) argument
986 TestReportable(const TestInfo * test_info) argument
991 ShouldRunTest(const TestInfo * test_info) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gtest/src/
H A Dgtest-internal-inl.h644 // test_info: the TestInfo object
647 TestInfo* test_info) {
661 GetTestCase(test_info->test_case_name(),
662 test_info->type_param(),
664 tear_down_tc)->AddTestInfo(test_info);
1143 void OnTestStart(const TestInfo& test_info) { argument
1144 SendLn(std::string("event=TestStart&name=") + test_info.name());
1147 void OnTestEnd(const TestInfo& test_info) { argument
1149 FormatBool((test_info.result())->Passed()) +
1151 StreamableToString((test_info
645 AddTestInfo(Test::SetUpTestCaseFunc set_up_tc,Test::TearDownTestCaseFunc tear_down_tc,TestInfo * test_info) argument
[all...]
H A Dgtest.cc2553 TestInfo* const test_info = local in function:testing::internal::MakeAndRegisterTestInfo
2556 GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info);
2557 return test_info;
2601 // Returns true iff the test name of test_info matches name_.
2602 bool operator()(const TestInfo * test_info) const {
2603 return test_info && test_info->name() == name_;
2753 void TestCase::AddTestInfo(TestInfo * test_info) { argument
2754 test_info_list_.push_back(test_info);
3009 void PrintFullTestCommentIfPresent(const TestInfo& test_info) { argument
3111 OnTestStart(const TestInfo & test_info) argument
3130 OnTestEnd(const TestInfo & test_info) argument
3181 const TestInfo& test_info = *test_case.GetTestInfo(j); local in function:testing::internal::PrettyUnitTestResultPrinter::PrintFailedTests
3625 OutputXmlTestInfo(::std::ostream * stream,const char * test_case_name,const TestInfo & test_info) argument
4807 TestInfo* const test_info = test_case->test_info_list()[j]; local in function:testing::internal::UnitTestImpl::FilterTests
4874 const TestInfo* const test_info = local in function:testing::internal::UnitTestImpl::ListTestsMatchingFilter
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h549 linked_ptr<TestInfo> test_info = *test_it; local in function:testing::internal::ParameterizedTestCaseInfo::RegisterTests
562 test_case_name += test_info->test_case_base_name;
585 test_name_stream << test_info->test_base_name << "/" << param_name;
595 test_info->test_meta_factory->CreateTestFactory(*param_it));
/xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h532 std::shared_ptr<TestInfo> test_info = *test_it; local in function:testing::internal::ParameterizedTestSuiteInfo::RegisterTests
545 test_suite_name += test_info->test_suite_base_name;
568 if (!test_info->test_base_name.empty()) {
569 test_name_stream << test_info->test_base_name << "/";
579 test_info->test_meta_factory->CreateTestFactory(*param_it));

Completed in 29 milliseconds