/external/python/cpython2/Lib/test/ |
D | test_cmd_line.py | 9 assert_python_ok, assert_python_failure, spawn_python, kill_python, 120 rc, out, err = assert_python_failure('-E', '-z') 126 rc, out, err = assert_python_failure('-z', without='-E') 130 rc, out, err = assert_python_failure('-a', '-z', without='-E')
|
D | test_cmd_line_script.py | 10 assert_python_failure, make_pkg, 220 rc, out, err = assert_python_failure('-m', *args) 247 rc, _, err = assert_python_failure('-m', name)
|
D | test_sys.py | 3 from test.script_helper import assert_python_ok, assert_python_failure 157 rc, out, err = assert_python_failure('-c', 'raise SystemExit, 46') 162 rc, out, err = assert_python_failure('-c', 'raise SystemExit(47)') 168 rc, out, err = assert_python_failure('-c', 'raise SystemExit(47L)') 179 rc, out, err = assert_python_failure('-c', code, **env_vars)
|
D | test_calendar.py | 5 from test.script_helper import assert_python_ok, assert_python_failure 503 rc, stdout, stderr = assert_python_failure('-m', 'calendar', *args)
|
D | test_parser.py | 8 from test.script_helper import assert_python_failure 671 rc, out, err = assert_python_failure('-c', e)
|
/external/python/cpython3/Lib/test/ |
D | test_cgitb.py | 2 from test.support.script_helper import assert_python_failure 41 rc, out, err = assert_python_failure( 57 rc, out, err = assert_python_failure(
|
D | test_cmd_line.py | 13 spawn_python, kill_python, assert_python_ok, assert_python_failure, 30 assert_python_failure('.') 31 assert_python_failure('< .') 119 assert_python_failure('-m') 121 assert_python_failure('-m', 'fnord43520xyz') 124 assert_python_failure('-m', 'runpy', 'fnord43520xyz') 142 assert_python_failure('-c') 144 assert_python_failure('-c', 'raise Exception') 363 rc, out, err = assert_python_failure('-c', "'") 375 rc, out, err = assert_python_failure('-c', code) [all …]
|
D | test_cmd_line_script.py | 19 assert_python_ok, assert_python_failure, spawn_python, kill_python) 142 rc, out, err = assert_python_failure( 451 rc, out, err = assert_python_failure('-m', *args, __isolated=False) 483 rc, _, err = assert_python_failure('-m', name) 547 exitcode, stdout, stderr = assert_python_failure(script_name) 591 exitcode, stdout, stderr = assert_python_failure(script_name) 599 exitcode, stdout, stderr = assert_python_failure(script_name) 611 exitcode, stdout, stderr = assert_python_failure(script_name) 622 exitcode, stdout, stderr = assert_python_failure(script_name) 631 exitcode, stdout, stderr = assert_python_failure(script_name) [all …]
|
D | test_crashers.py | 11 from test.support.script_helper import assert_python_failure 30 assert_python_failure(fname)
|
D | test_cprofile.py | 9 from test.support.script_helper import assert_python_failure 63 rc, out, err = assert_python_failure('-m', 'cProfile', '-s', 'demo')
|
D | test_eof.py | 53 rc, out, err = script_helper.assert_python_failure(file_name) 59 rc, out, err = script_helper.assert_python_failure(file_name)
|
D | test_profile.py | 14 from test.support.script_helper import assert_python_failure, assert_python_ok 104 assert_python_failure('-m', self.profilermodule.__name__, '-m') 107 assert_python_failure('-m', self.profilermodule.__name__,
|
D | test_script_helper.py | 19 rc, out, err = script_helper.assert_python_failure('-c', 'sys.exit(0)') 32 script_helper.assert_python_failure('-c', 'import sys; sys.exit(0)')
|
D | test_utf8_mode.py | 10 from test.support.script_helper import assert_python_ok, assert_python_failure 31 out = assert_python_failure(*args, **kw)
|
D | test_capi.py | 20 from test.support.script_helper import assert_python_failure, assert_python_ok 206 rc, out, err = assert_python_failure('-c', code) 235 rc, out, err = assert_python_failure('-c', code) 350 rc, out, err = assert_python_failure('-c', code) 715 out = assert_python_failure('-c', code,
|
D | test_trace.py | 4 from test.support.script_helper import assert_python_ok, assert_python_failure 487 *_, stderr = assert_python_failure('-m', 'trace', *args) 539 assert_python_failure('-m', 'trace', '-l', '--module', 'not_a_module_zzz')
|
D | test_compileall.py | 254 _, _, err = script_helper.assert_python_failure(modcode) 284 rc, out, err = script_helper.assert_python_failure(bc) 303 rc, out, err = script_helper.assert_python_failure(bc) 320 rc, out, err = script_helper.assert_python_failure(bc) 465 rc, out, err = script_helper.assert_python_failure( 683 rc, out, err = script_helper.assert_python_failure(fn, __isolated=False) 792 rc, out, err = script_helper.assert_python_failure(bc)
|
D | test_exceptions.py | 1051 rc, out, err = script_helper.assert_python_failure("-Wd", "-c", code) 1070 rc, out, err = script_helper.assert_python_failure("-c", code) 1095 rc, out, err = script_helper.assert_python_failure("-c", code) 1256 rc, out, err = script_helper.assert_python_failure("-c", code % i)
|
D | test_calendar.py | 5 from test.support.script_helper import assert_python_ok, assert_python_failure 797 rc, stdout, stderr = assert_python_failure('-m', 'calendar', *args)
|
D | test_threading.py | 7 from test.support.script_helper import assert_python_ok, assert_python_failure 296 rc, out, err = assert_python_failure("-c", """if 1: 1073 rc, out, err = assert_python_failure("-c", script)
|
D | test_gzip.py | 15 from test.support.script_helper import assert_python_ok, assert_python_failure 824 rc, out, err = assert_python_failure('-m', 'gzip', '--fast', '--best') 829 rc, out, err = assert_python_failure('-m', 'gzip', '--fast', '-d')
|
D | test_tracemalloc.py | 7 from test.support.script_helper import (assert_python_ok, assert_python_failure, 905 ok, stdout, stderr = assert_python_failure( 936 ok, stdout, stderr = assert_python_failure(*args)
|
/external/python/cpython3/Lib/test/test_tools/ |
D | test_md5sum.py | 7 from test.support.script_helper import assert_python_ok, assert_python_failure 71 rc, out, err = assert_python_failure(self.script, '-h')
|
/external/python/cpython2/Lib/test/support/ |
D | script_helper.py | 57 def assert_python_failure(*args, **env_vars): function
|
/external/python/cpython3/Lib/test/support/ |
D | script_helper.py | 158 def assert_python_failure(*args, **env_vars): function
|