Home
last modified time | relevance | path

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

/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dsplit_qnameval.c126 struct test_info { in main() struct
132 static const struct test_info test_info[] = { in main() local
152 const struct test_info *tp; in main()
154 for (tp = test_info; tp->input != 0; tp++) { in main()
159 int test_number = (int) (tp - test_info); in main()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest.h797 static void ClearTestResult(TestInfo* test_info) { in ClearTestResult() argument
798 test_info->result_.Clear(); in ClearTestResult()
930 void AddTestInfo(TestInfo * test_info);
960 static bool TestPassed(const TestInfo* test_info) { in TestPassed() argument
961 return test_info->should_run() && test_info->result()->Passed(); in TestPassed()
965 static bool TestSkipped(const TestInfo* test_info) { in TestSkipped() argument
966 return test_info->should_run() && test_info->result()->Skipped(); in TestSkipped()
970 static bool TestFailed(const TestInfo* test_info) { in TestFailed() argument
971 return test_info->should_run() && test_info->result()->Failed(); in TestFailed()
976 static bool TestReportableDisabled(const TestInfo* test_info) { in TestReportableDisabled() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest.cc2586 TestInfo* const test_info = in MakeAndRegisterTestInfo() local
2589 GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info); in MakeAndRegisterTestInfo()
2590 return test_info; in MakeAndRegisterTestInfo()
2631 bool operator()(const TestInfo * test_info) const { in operator ()()
2632 return test_info && test_info->name() == name_; in operator ()()
2789 void TestSuite::AddTestInfo(TestInfo* test_info) { in AddTestInfo() argument
2790 test_info_list_.push_back(test_info); in AddTestInfo()
3083 static void PrintFullTestCommentIfPresent(const TestInfo& test_info) { in PrintFullTestCommentIfPresent() argument
3084 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent()
3085 const char* const value_param = test_info.value_param(); in PrintFullTestCommentIfPresent()
[all …]
H A Dgtest-internal-inl.h675 TestInfo* test_info) { in AddTestInfo() argument
689 GetTestSuite(test_info->test_suite_name(), test_info->type_param(), in AddTestInfo()
691 ->AddTestInfo(test_info); in AddTestInfo()
1170 void OnTestStart(const TestInfo& test_info) override { in OnTestStart() argument
1171 SendLn(std::string("event=TestStart&name=") + test_info.name()); in OnTestStart()
1174 void OnTestEnd(const TestInfo& test_info) override { in OnTestEnd() argument
1176 FormatBool((test_info.result())->Passed()) + in OnTestEnd()
1178 StreamableToString((test_info.result())->elapsed_time()) + "ms"); in OnTestEnd()
/netbsd-src/external/apache2/llvm/dist/clang/utils/analyzer/
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)
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)
/netbsd-src/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; in RegisterTests() local
545 test_suite_name += test_info->test_suite_base_name; in RegisterTests()
568 if (!test_info->test_base_name.empty()) { in RegisterTests()
569 test_name_stream << test_info->test_base_name << "/"; in RegisterTests()
579 test_info->test_meta_factory->CreateTestFactory(*param_it)); in RegisterTests()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/src/
H A Dgmock-spec-builders.cc791 const TestInfo* const test_info = in RegisterUseByOnCallOrExpectCall() local
793 if (test_info != nullptr) { in RegisterUseByOnCallOrExpectCall()
794 state.first_used_test_suite = test_info->test_suite_name(); in RegisterUseByOnCallOrExpectCall()
795 state.first_used_test = test_info->name(); in RegisterUseByOnCallOrExpectCall()
/netbsd-src/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): argument
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): argument
899 for input_line_info in test_info.iterlines(output_lines):
/netbsd-src/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-src/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, ...) in test_info() function
/netbsd-src/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__)
/netbsd-src/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, ...) in test_info() function