| /xsrc/external/mit/MesaLib/dist/src/util/tests/fast_urem_by_const/ |
| H A D | fast_urem_by_const_test.cpp | 66 test_case(uint32_t n, uint32_t d) function in typeref:typename:void 84 test_case(n, d); 90 test_case(0, 1); 91 test_case(0, UINT32_MAX); 92 test_case(UINT32_MAX, 1); 93 test_case(1, UINT32_MAX); 94 test_case(UINT32_MAX, UINT32_MAX); 95 test_case(UINT32_MAX, UINT32_MAX - 1); 96 test_case(UINT32_MAX - 1, UINT32_MAX - 1); 97 test_case(UINT32_MA [all...] |
| /xsrc/external/mit/MesaLib/dist/.gitlab-ci/lava/ |
| H A D | lava_job_submitter.py | 201 def get_job_results(proxy, job_id, test_suite, test_case): 216 results_yaml = _call_proxy(proxy.results.get_testcase_results_yaml, job_id, test_suite, test_case) 219 fatal_err("LAVA: no result for test_suite '{}', test_case '{}'".format(test_suite, test_case)) 221 print_log("LAVA: result for test_suite '{}', test_case '{}': {}".format(test_suite, test_case, results[0]['result']))
|
| /xsrc/external/mit/MesaLib.old/dist/src/gtest/src/ |
| H A D | gtest.cc | 345 static bool TestCasePassed(const TestCase* test_case) { argument 346 return test_case->should_run() && test_case->Passed(); 350 static bool TestCaseFailed(const TestCase* test_case) { argument 351 return test_case->should_run() && test_case->Failed(); 354 // Returns true iff test_case contains at least one test that should 356 static bool ShouldRunTestCase(const TestCase* test_case) { argument 357 return test_case->should_run(); 2271 const TestCase* const test_case local in function:testing::Test::HasSameFixtureClass 3032 PrintTestName(const char * test_case,const char * test) argument 3098 OnTestCaseStart(const TestCase & test_case) argument 3149 OnTestCaseEnd(const TestCase & test_case) argument 3176 const TestCase& test_case = *unit_test.GetTestCase(i); local in function:testing::internal::PrettyUnitTestResultPrinter::PrintFailedTests 3675 PrintXmlTestCase(std::ostream * stream,const TestCase & test_case) argument 4507 const std::vector<TestCase*>::const_iterator test_case = local in function:testing::internal::UnitTestImpl::GetTestCase 4802 TestCase* const test_case = test_cases_[i]; local in function:testing::internal::UnitTestImpl::FilterTests 4870 const TestCase* const test_case = test_cases_[i]; local in function:testing::internal::UnitTestImpl::ListTestsMatchingFilter [all...] |
| H A D | gtest-internal-inl.h | 1133 void OnTestCaseStart(const TestCase& test_case) { argument 1134 SendLn(std::string("event=TestCaseStart&name=") + test_case.name()); 1137 void OnTestCaseEnd(const TestCase& test_case) { argument 1138 SendLn("event=TestCaseEnd&passed=" + FormatBool(test_case.Passed()) 1139 + "&elapsed_time=" + StreamableToString(test_case.elapsed_time())
|
| /xsrc/external/mit/MesaLib/dist/src/gtest/src/ |
| H A D | gtest-internal-inl.h | 1158 void OnTestCaseStart(const TestCase& test_case) override { argument 1159 SendLn(std::string("event=TestCaseStart&name=") + test_case.name()); 1164 void OnTestCaseEnd(const TestCase& test_case) override { argument 1165 SendLn("event=TestCaseEnd&passed=" + FormatBool(test_case.Passed()) + 1166 "&elapsed_time=" + StreamableToString(test_case.elapsed_time()) +
|
| H A D | gtest.cc | 3115 void OnTestCaseStart(const TestCase& test_case) override; 3125 void OnTestCaseEnd(const TestCase& test_case) override; 3184 void PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) { argument 3186 FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); 3188 printf("%s from %s", counts.c_str(), test_case.name()); 3189 if (test_case.type_param() == nullptr) { 3192 printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); 3258 void PrettyUnitTestResultPrinter::OnTestCaseEnd(const TestCase& test_case) { argument 3262 FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); 3264 printf("%s from %s (%s ms total)\n\n", counts.c_str(), test_case [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| H A D | test_eu_validate.cpp | 197 } test_case[] = { local in function:TEST_P 209 for (unsigned i = 0; i < ARRAY_SIZE(test_case); i++) { 212 brw_inst_set_exec_size(&devinfo, last_inst, test_case[i].exec_size); 216 if (test_case[i].exec_size == BRW_EXECUTE_1) { 226 EXPECT_EQ(test_case[i].expected_result, validate(p)); 284 } test_case[] = { local in function:TEST_P 307 for (unsigned i = 0; i < ARRAY_SIZE(test_case); i++) { 308 if (test_case[i].expected_result) { 309 unsigned hw_type = brw_reg_type_to_hw_type(&devinfo, file, test_case[i].type); 317 struct brw_reg g = retype(g0, test_case[ 392 } test_case[] = { local in function:TEST_P 473 } test_case[] = { local in function:TEST_P 565 } test_case[] = { variable in typeref:typename:const struct __anon909a53240508[] [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/ |
| H A D | gtest.h | 878 static void ClearTestCaseResult(TestCase* test_case) { argument 879 test_case->ClearResult(); 1011 virtual void OnTestCaseStart(const TestCase& test_case) = 0; 1023 virtual void OnTestCaseEnd(const TestCase& test_case) = 0; 1051 virtual void OnTestCaseStart(const TestCase& /*test_case*/) {} 1055 virtual void OnTestCaseEnd(const TestCase& /*test_case*/) {}
|