Home
last modified time | relevance | path

Searched refs:passed_string (Results 1 – 2 of 2) sorted by relevance

/third_party/jerryscript/tools/runners/
Drun-test-suite.py144 passed_string = 'PASS' + (' (XFAIL)' if is_expected_to_fail else '')
145 util.print_test_result(tested, total, True, passed_string, test_path)
147passed_string = 'FAIL%s (%d)' % (' (XPASS)' if returncode == 0 and is_expected_to_fail else '', re…
148 util.print_test_result(tested, total, False, passed_string, test_path)
182 passed_string = 'PASS' + (' (XFAIL)' if returncode else '')
183 util.print_test_result(tested, total, True, passed_string, test_path, True)
201 passed_string = 'PASS' + (' (XFAIL)' if is_expected_to_fail else '')
202 util.print_test_result(tested, total, True, passed_string, test_path, False)
204passed_string = 'FAIL%s (%d)' % (' (XPASS)' if returncode == 0 and is_expected_to_fail else '', re…
205 util.print_test_result(tested, total, False, passed_string, test_path, False)
Dutil.py58 def print_test_result(tested, total, is_passed, passed_string, test_path, is_snapshot_generation=No… argument
67 …print("[%4d/%4d] %s%s: %s%s%s" % (tested, total, color, passed_string, test_path, snapshot_string,…