HomeSort by relevance Sort by last modified time
    Searched refs:test_result (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/
unit_test.h 2 struct test_result { struct
10 void (*test_func)(struct test_result * result);
11 struct test_result result;
16 void test_begin(struct test_result * result);
17 void test_check(struct test_result * result, int cond);
radeon_compiler_util_tests.c 13 struct test_result * result,
32 static void test_runner_rc_inst_can_use_presub(struct test_result * result)
unit_test.c 19 void test_begin(struct test_result * result)
24 void test_check(struct test_result * result, int cond)
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
unit_test.h 2 struct test_result { struct
10 void (*test_func)(struct test_result * result);
11 struct test_result result;
16 void test_begin(struct test_result * result);
17 void test_check(struct test_result * result, int cond);
radeon_compiler_util_tests.c 13 struct test_result * result,
32 static void test_runner_rc_inst_can_use_presub(struct test_result * result)
unit_test.c 19 void test_begin(struct test_result * result)
24 void test_check(struct test_result * result, int cond)
  /external/chromium_org/base/test/
thread_test_helper.h 34 void set_test_result(bool test_result) { test_result_ = test_result; }
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_run_results.py 96 def add(self, test_result, expected, test_is_slow):
97 result_type_for_stats = test_result.type
98 if test_expectations.WONTFIX in self.expectations.model().get_expectations(test_result.test_name):
100 self.tests_by_expectation[result_type_for_stats].add(test_result.test_name)
102 self.results_by_name[test_result.test_name] = test_result
103 if test_result.type != test_expectations.SKIP:
104 self.all_results.append(test_result)
106 if len(test_result.failures):
108 self.failures_by_name[test_result.test_name] = test_result.failure
    [all...]
  /external/chromium_org/base/test/launcher/
unit_test_launcher.cc 339 TestResult test_result = results_map[test_names[i]]; local
340 if (test_result.status == TestResult::TEST_CRASH) {
347 test_result.status = TestResult::TEST_TIMEOUT;
349 } else if (test_result.status == TestResult::TEST_SUCCESS ||
350 test_result.status == TestResult::TEST_FAILURE) {
356 if (test_result.elapsed_time >
358 test_result.status = TestResult::TEST_TIMEOUT;
361 test_result.output_snippet =
362 GetTestOutputSnippet(test_result, output);
363 final_results.push_back(test_result);
370 TestResult test_result; local
436 TestResult test_result; local
    [all...]
test_results_tracker.cc 270 const TestResult& test_result = j->second.test_results[k]; local
275 test_result_value->SetString("status", test_result.StatusAsString());
277 "elapsed_time_ms", test_result.elapsed_time.InMilliseconds());
285 test_result.output_snippet, false, &escaped_output_snippet);
295 Base64Encode(test_result.output_snippet, &base64_output_snippet);
  /external/chromium_org/chrome/browser/ui/webui/
web_ui_test_handler.cc 61 void WebUITestHandler::HandleTestResult(const ListValue* test_result) {
73 ASSERT_TRUE(test_result->GetBoolean(0, &test_succeeded_));
76 ASSERT_TRUE(test_result->GetString(1, &message));
web_ui_test_handler.h 44 void HandleTestResult(const base::ListValue* test_result);
  /external/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/
Test.pm 76 my $test_result;
98 $test_result = run_program([ get_perl(), '-Mblib', "-I$tmpdir", $test_program_file ]);
99 if ($test_result->{exit_code} >> 8 != 0) {
100 croak $test_result->{err};
106 my $actual = $test_result->{out};
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
single_test_runner.py 129 test_result = self._compare_output(expected_driver_output, driver_output)
131 self._add_missing_baselines(test_result, driver_output)
132 test_result_writer.write_test_result(self._filesystem, self._port, self._results_directory, self._test_name, driver_output, expected_driver_output, test_result.failures)
133 return test_result
147 def _add_missing_baselines(self, test_result, driver_output):
148 missingImage = test_result.has_failure_matching_types(test_failures.FailureMissingImage, test_failures.FailureMissingImageHash)
149 if test_result.has_failure_matching_types(test_failures.FailureMissingResult):
151 if test_result.has_failure_matching_types(test_failures.FailureMissingAudio):
304 test_result = None
325 test_result = self._compare_output_with_reference(reference_output, test_output, reference_filename, expectati (…)
    [all...]
  /development/testrunner/
am_instrument_parser.py 52 test_result = TestResult(result_block_string)
53 if test_result.GetStatusCode() == 1: # The test started
55 elif test_result.GetStatusCode() in [0, -1, -2]:
56 test_results.append(test_result)
  /external/chromium_org/third_party/android_testrunner/
am_instrument_parser.py 52 test_result = TestResult(result_block_string)
53 if test_result.GetStatusCode() == 1: # The test started
55 elif test_result.GetStatusCode() in [0, -1, -2]:
56 test_results.append(test_result)
  /development/testrunner/test_defs/
instrumentation_test.py 197 for test_result in test_results:
198 if test_result.GetStatusCode() == -1: # error
199 logger.Log("Error in %s: %s" % (test_result.GetTestName(),
200 test_result.GetFailureReason()))
202 elif test_result.GetStatusCode() == -2: # failure
203 logger.Log("Failure in %s: %s" % (test_result.GetTestName(),
204 test_result.GetFailureReason()))
  /external/chromium_org/build/android/pylib/host_driven/
test_runner.py 14 from pylib.instrumentation import test_result namespace
19 class HostDrivenExceptionTestResult(test_result.InstrumentationTestResult):
test_case.py 33 from pylib.instrumentation import test_result namespace
177 test_result.InstrumentationTestResult(
  /external/chromium_org/build/android/pylib/base/
test_dispatcher.py 161 for test_result in test_run_results.GetAll():
162 test_result.SetName('%s_%s' % (runner.device[-4:], test_result.GetName()))
163 new_test_run_results.AddResult(test_result)
  /external/chromium/chrome/browser/printing/
printing_layout_uitest.cc 56 FilePath test_result(ScanFiles(verification_name));
57 if (test_result.value().empty()) {
77 file_util::CopyFile(test_result, emf);
85 Image test_content(test_result);
94 file_util::CopyFile(test_result, FilePath(
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
json_results_generator.py 121 for test_result in individual_test_timings:
122 test = test_result.test_name
124 add_path_to_trie(test, int(1000 * test_result.test_run_time), trie)
365 test_result = self._test_results_map[test_name]
366 if test_result.modifier in self.MODIFIER_TO_CHAR.keys():
367 return self.MODIFIER_TO_CHAR[test_result.modifier]
379 test_result = self._test_results_map[test_name]
380 if test_result.modifier == TestResult.DISABLED:
383 if test_result.failed:
  /external/clang/utils/
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:
  /external/chromium_org/tools/telemetry/telemetry/unittest/
run_tests.py 79 test_result = runner.run(filtered_suite)
80 return test_result
  /external/chromium_org/chrome_frame/test/net/
fake_external_tab.h 99 int test_result() const { function in class:CFUrlRequestUnittestRunner

Completed in 1517 milliseconds

1 2 3