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

/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dsplit_qnameval.c126 struct test_info { struct
132 static const struct test_info test_info[] = { local
152 const struct test_info *tp;
154 for (tp = test_info; tp->input != 0; tp++) {
159 int test_number = (int) (tp - test_info);
/netbsd-current/external/apache2/llvm/dist/clang/utils/analyzer/
H A DSATestAdd.py58 test_info = SATestBuild.TestInfo(project,
60 tester = SATestBuild.ProjectTester(test_info)
H A DSATestUpdateDiffs.py19 test_info = SATestBuild.TestInfo(project)
20 tester = SATestBuild.ProjectTester(test_info)
H A DSATestBenchmark.py59 test_info = TestInfo(project)
60 tester = ProjectTester(test_info, silent=True)
H A DSATestBuild.py308 def __init__(self, test_info: TestInfo, silent: bool = False):
309 self.project = test_info.project
310 self.override_compiler = test_info.override_compiler
311 self.extra_analyzer_config = test_info.extra_analyzer_config
312 self.is_reference_build = test_info.is_reference_build
313 self.strictness = test_info.strictness
687 test_info = self.tasks_queue.get()
688 init_logger(test_info.project.name)
690 tester = ProjectTester(test_info)
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest.cc2586 TestInfo* const test_info = local
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
3326 const TestInfo& test_info = *test_suite.GetTestInfo(j); local
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
5574 const TestInfo* const test_info = test_suite->test_info_list()[j]; local
[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 {
1171 SendLn(std::string("event=TestStart&name=") + test_info.name());
1174 void OnTestEnd(const TestInfo& test_info) override {
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...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/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...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/src/
H A Dgmock-spec-builders.cc791 const TestInfo* const test_info = local
793 if (test_info != nullptr) {
794 state.first_used_test_suite = test_info->test_suite_name();
795 state.first_used_test = test_info->name();
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h532 std::shared_ptr<TestInfo> test_info = *test_it; variable
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));
/netbsd-current/crypto/external/bsd/openssl.old/dist/test/testutil/
H A Ddriver.c27 typedef struct test_info { struct
H A Dtests.c110 void test_info(const char *file, int line, const char *desc, ...) function
/netbsd-current/external/apache2/llvm/dist/llvm/utils/UpdateTestChecks/
H A Dcommon.py875 def find_arg_in_test(test_info, get_arg_to_check, arg_string, is_global):
876 result = get_arg_to_check(test_info.args)
882 for line_info in test_info.ro_iterlines():
898 def dump_input_lines(output_lines, test_info, prefix_set, comment_string):
899 for input_line_info in test_info.iterlines(output_lines):
/netbsd-current/crypto/external/bsd/openssl.old/dist/test/
H A Dtestutil.h274 void test_info(const char *file, int line, const char *desc, ...)
390 # define TEST_info(...) test_info(__FILE__, __LINE__, __VA_ARGS__)
/netbsd-current/crypto/external/bsd/openssl/dist/test/testutil/
H A Ddriver.c30 typedef struct test_info { struct
H A Dtests.c110 void test_info(const char *file, int line, const char *desc, ...) function
/netbsd-current/crypto/external/bsd/openssl/dist/test/
H A Dtestutil.h409 void test_info(const char *file, int line, const char *desc, ...)
538 # define TEST_info(...) test_info(__FILE__, __LINE__, __VA_ARGS__)

Completed in 478 milliseconds