/third_party/skia/third_party/externals/harfbuzz/test/subset/ |
D | run-tests.py | 40 def fail_test (test, cli_args, message): argument 53 cli_args = ["--font-file=" + test.font_path, 58 cli_args.extend (test.get_profile_flags ()) 59 ret = subset_cmd (cli_args) 62 return fail_test (test, cli_args, "%s failed" % ' '.join (cli_args)) 74 return fail_test (test, cli_args, 'ots for subsetted file fails.') 79 return fail_test (test, cli_args, "hash for expected and actual does not match.") 87 return fail_test (test, cli_args, "ttx failed to parse the expected result") 96 return fail_test (test, cli_args, "ttx failed to parse the actual result") 103 return fail_test (test, cli_args, 'ttx for expected and actual does not match.') [all …]
|
D | run-repack-tests.py | 40 def fail_test (test, cli_args, message): argument 49 cli_args = ["--font-file=" + test.font_path (), 53 print (' '.join (cli_args)) 54 ret = subset_cmd (cli_args) 57 return fail_test (test, cli_args, "%s failed" % ' '.join (cli_args)) 64 return fail_test (test, cli_args, "ttx failed to parse the result") 69 return fail_test (test, cli_args, 'ots for subsetted file fails.')
|
/third_party/harfbuzz/test/subset/ |
D | run-tests.py | 33 def fail_test (test, cli_args, message): argument 46 cli_args = [hb_subset, 52 cli_args.extend (test.get_profile_flags ()) 53 print (' '.join (cli_args)) 54 _, return_code = cmd (cli_args) 57 return fail_test (test, cli_args, "%s returned %d" % (' '.join (cli_args), return_code)) 65 return fail_test (test, cli_args, "ttx failed to parse the expected result") 73 return fail_test (test, cli_args, "ttx failed to parse the actual result") 84 return fail_test (test, cli_args, 'ttx for expected and actual does not match.') 89 return fail_test (test, cli_args, 'ots for subsetted file fails.')
|
D | run-repack-tests.py | 33 def fail_test (test, cli_args, message): argument 42 cli_args = [hb_subset, 47 print (' '.join (cli_args)) 48 _, return_code = cmd (cli_args) 51 return fail_test (test, cli_args, "%s returned %d" % (' '.join (cli_args), return_code)) 58 return fail_test (test, cli_args, "ttx failed to parse the result") 63 return fail_test (test, cli_args, 'ots for subsetted file fails.')
|
/third_party/flutter/skia/third_party/externals/harfbuzz/test/subset/ |
D | run-tests.py | 53 def fail_test (test, cli_args, message): argument 66 cli_args = [hb_subset, 71 cli_args.extend (test.get_profile_flags ()) 72 print (' '.join (cli_args)) 73 _, return_code = cmd (cli_args) 76 return fail_test (test, cli_args, "%s returned %d" % (' '.join (cli_args), return_code)) 81 return fail_test (test, cli_args, "ttx (expected) returned %d" % (return_code)) 85 return fail_test (test, cli_args, "ttx (actual) returned %d" % (return_code)) 95 return fail_test (test, cli_args, 'ttx for expected and actual does not match.') 100 return fail_test (test, cli_args, 'ots for subsetted file fails.')
|
/third_party/python/Lib/idlelib/ |
D | runscript.py | 45 self.cli_args = [] 137 cli_args=self.cli_args).result 140 self.cli_args, restart = run_args if customize else ([], True) 147 if self.cli_args: 148 argv += self.cli_args
|
D | query.py | 345 def __init__(self, parent, title, *, cli_args=[], argument 354 parent, title, message, text0=cli_args, 374 cli_args = shlex.split(cli_string, posix=True) 378 return cli_args 382 cli_args = self.cli_args_ok() 384 return None if cli_args is None else (cli_args, restart)
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_query.py | 303 return self.cli_args 309 for cli_args, result in ((None, None), 311 with self.subTest(restart=restart, cli_args=cli_args): 312 dialog.cli_args = cli_args 442 cli_args=['a', 'b=1'], _utest=True)
|