Home
last modified time | relevance | path

Searched refs:expected_output (Results 1 – 4 of 4) sorted by relevance

/art/test/dexdump/
Drun-all-tests95 expected_output=${dex%%.*}.${suffix}
96 actual_output=${tmpdir}/${expected_output}
99 cmp ${expected_output} ${actual_output}
/art/tools/bisection_search/
Dbisection_search.py199 def __init__(self, expected_output): argument
205 self._expected_output = expected_output
399 if args.expected_output:
402 args.check_script, args.expected_output, test_env.logfile)
404 with open(args.expected_output, 'r') as expected_output_file:
/art/dex2oat/linker/
Dmulti_oat_relative_patcher_test.cc267 uint8_t expected_output[] = { in TEST_F() local
272 ASSERT_EQ(arraysize(expected_output), output.size()); in TEST_F()
273 for (size_t i = 0; i != arraysize(expected_output); ++i) { in TEST_F()
274 ASSERT_EQ(expected_output[i], output[i]) << i; in TEST_F()
/art/tools/jfuzz/
Drun_jfuzz_test.py569 def RunBisectionSearch(self, args, expected_retcode, expected_output, argument
577 if expected_output:
578 args += ['--expected-output', expected_output]