/llvm-project/lldb/test/API/lang/cpp/nsimport/ |
H A D | TestCppNsImport.py | 51 test_result = frame.EvaluateExpression("n") 53 test_result.IsValid() and test_result.GetValueAsSigned() == 1, "n = 1" 56 test_result = frame.EvaluateExpression("N::n") 58 test_result.IsValid() and test_result.GetValueAsSigned() == 1, "N::n = 1" 61 test_result = frame.EvaluateExpression("nested") 63 test_result.IsValid() and test_result.GetValueAsSigned() == 3, "nested = 3" 66 test_result = frame.EvaluateExpression("anon") 68 test_result.IsValid() and test_result.GetValueAsSigned() == 2, "anon = 2" 71 test_result = frame.EvaluateExpression("global") 73 test_result.IsValid() and test_result.GetValueAsSigned() == 4, "global = 4" [all …]
|
/llvm-project/lldb/test/API/lang/cpp/global_operators/ |
H A D | TestCppGlobalOperators.py | 50 test_result = frame.EvaluateExpression("operator==(s1, s2)") 52 test_result.IsValid() and test_result.GetValue() == "false", 56 test_result = frame.EvaluateExpression("operator==(s1, s3)") 58 test_result.IsValid() and test_result.GetValue() == "true", 62 test_result = frame.EvaluateExpression("operator==(s2, s3)") 64 test_result.IsValid() and test_result.GetValue() == "false",
|
/llvm-project/libc/fuzzing/stdio/ |
H A D | printf_float_conv_fuzz.cpp | 59 int test_result = 0; in test_vals() local 62 test_result = LIBC_NAMESPACE::snprintf(test_buff, buffer_size + 1, fmt, width, in test_vals() 68 if (test_result != reference_result || test_result != buffer_size) { in test_vals()
|
H A D | printf_fixed_conv_fuzz.cpp | 77 int test_result = 0; in test_vals() local 80 test_result = LIBC_NAMESPACE::snprintf(test_buff, buffer_size + 1, fmt, width, in test_vals() 88 if (test_result != reference_result || test_result != buffer_size) in test_vals()
|
/llvm-project/libcxx/test/support/test.support/ |
H A D | test_check_assertion.pass.cpp | 33 …DeathTestResult test_result = test_case.Run(std::array<DeathCause, 1>{expected_cause}, func, get_m… in TestDeathTest() local 36 Outcome outcome = test_result.outcome(); in TestDeathTest() 43 DeathCause cause = test_result.cause(); in TestDeathTest() 56 test_case.PrintFailureDetails(maybe_failure_description, stmt, test_result.cause()); in TestDeathTest()
|
/llvm-project/clang/utils/ |
H A D | FuzzTest | 143 test_result = (exit_code == opts.expected_exit_code or 151 if not opts.log_all and test_result: 155 if not test_result: 159 return test_result 339 test_result = run_one_test(ta, test, input_files, args) 340 if not test_result and opts.stop_on_fail:
|
/llvm-project/llvm/test/CodeGen/PowerPC/ |
H A D | ppcf128-endian.ll | 97 ; CHECK-NEXT: bl test_result 108 %call = tail call ppc_fp128 @test_result() #3 113 declare ppc_fp128 @test_result() 123 ; CHECK-NEXT: bl test_result 132 %call = tail call ppc_fp128 @test_result()
|
/llvm-project/libcxx/test/support/ |
H A D | check_assertion.h | 358 DeathTestResult test_result = test_case.Run(expected_causes, func, matcher); in ExpectDeath() local 359 if (!test_result.success()) { in ExpectDeath() 360 test_case.PrintFailureDetails(test_result.failure_description(), stmt, test_result.cause()); in ExpectDeath() 363 return test_result.success(); in ExpectDeath()
|
/llvm-project/third-party/unittest/googletest/src/ |
H A D | gtest-internal-inl.h | 1043 static void RecordProperty(TestResult* test_result, in RecordProperty() argument 1046 test_result->RecordProperty(xml_element, property); in RecordProperty() 1049 static void ClearTestPartResults(TestResult* test_result) { in ClearTestPartResults() argument 1050 test_result->ClearTestPartResults(); in ClearTestPartResults() 1054 const TestResult& test_result) { in test_part_results() argument 1055 return test_result.test_part_results(); in test_part_results()
|
H A D | gtest.cc | 5602 TestResult* test_result; // TestResult appropriate for property recording. in RecordProperty() local 5606 test_result = &(current_test_info_->result_); in RecordProperty() 5609 test_result = &(current_test_suite_->ad_hoc_test_result_); in RecordProperty() 5612 test_result = &ad_hoc_test_result_; in RecordProperty() 5614 test_result->RecordProperty(xml_element, test_property); in RecordProperty() 5906 TestResult& test_result = in RunAllTests() local 5908 for (int j = 0; j < test_result.total_part_count(); ++j) { in RunAllTests() 5910 test_result.GetTestPartResult(j); in RunAllTests()
|
/llvm-project/lldb/packages/Python/lldbsuite/test/ |
H A D | configuration.py | 119 test_result = None 115 test_result = None global() variable
|
H A D | dotest.py | 44 from . import test_result 1105 resultclass=test_result.LLDBTestResult, 1111 test_result.LLDBTestResult.__ignore_singleton__ = True 1116 resultclass=test_result.LLDBTestResult,
|
H A D | test_result.py | 70 configuration.test_result = self
|
H A D | lldbtest.py | 1204 # either errored or failed. The lldb.test_result singleton contains 1216 pairs = configuration.test_result.errors 1219 pairs = configuration.test_result.cleanup_errors 1222 pairs = configuration.test_result.failures 1225 pairs = configuration.test_result.expectedFailures
|
/llvm-project/llvm/test/CodeGen/X86/ |
H A D | statepoint-invoke.ll | 61 define ptr addrspace(1) @test_result(ptr addrspace(1) %obj, 62 ; CHECK-LABEL: test_result:
|