/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_cmd_line.py | 14 spawn_python, kill_python, assert_python_ok, assert_python_failure, 34 assert_python_failure('.') 35 assert_python_failure('< .') 162 assert_python_failure('-m') 164 assert_python_failure('-m', 'fnord43520xyz') 167 assert_python_failure('-m', 'runpy', 'fnord43520xyz') 195 assert_python_failure('-c') 197 assert_python_failure('-c', 'raise Exception') 459 rc, out, err = assert_python_failure('-c', "'") 471 rc, out, err = assert_python_failure('-c', code) [all …]
|
D | test_cmd_line_script.py | 21 assert_python_ok, assert_python_failure, spawn_python, kill_python) 146 rc, out, err = assert_python_failure( 455 rc, out, err = assert_python_failure('-m', *args, __isolated=False) 486 rc, _, err = assert_python_failure('-m', name) 550 exitcode, stdout, stderr = assert_python_failure(script_name) 595 exitcode, stdout, stderr = assert_python_failure(script_name) 603 exitcode, stdout, stderr = assert_python_failure(script_name) 615 exitcode, stdout, stderr = assert_python_failure(script_name) 626 exitcode, stdout, stderr = assert_python_failure(script_name) 635 exitcode, stdout, stderr = assert_python_failure(script_name) [all …]
|
D | test_cgitb.py | 2 from test.support.script_helper import assert_python_failure 42 rc, out, err = assert_python_failure( 58 rc, out, err = assert_python_failure(
|
D | test_eof.py | 36 rc, out, err = script_helper.assert_python_failure(file_name) 63 rc, out, err = script_helper.assert_python_failure(file_name) 69 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_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_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_compileall.py | 318 _, _, err = script_helper.assert_python_failure(modcode) 350 rc, out, err = script_helper.assert_python_failure(bc) 369 rc, out, err = script_helper.assert_python_failure(bc) 386 rc, out, err = script_helper.assert_python_failure(bc) 531 rc, out, err = script_helper.assert_python_failure( 739 rc, out, err = script_helper.assert_python_failure(fn, __isolated=False) 848 rc, out, err = script_helper.assert_python_failure(bc)
|
D | test_utf8_mode.py | 11 from test.support.script_helper import assert_python_ok, assert_python_failure 33 out = assert_python_failure(*args, **kw)
|
D | test_trace.py | 6 from test.support.script_helper import assert_python_ok, assert_python_failure 503 *_, stderr = assert_python_failure('-m', 'trace', *args) 555 assert_python_failure('-m', 'trace', '-l', '--module', 'not_a_module_zzz')
|
D | test_source_encoding.py | 157 retcode, stdout, stderr = script_helper.assert_python_failure(TESTFN) 274 rc, stdout, stderr = script_helper.assert_python_failure(fn)
|
D | test_gzip.py | 16 from test.support.script_helper import assert_python_ok, assert_python_failure 803 rc, out, err = assert_python_failure('-m', 'gzip', '-d', 'thisisatest.out') 853 rc, out, err = assert_python_failure('-m', 'gzip', '--fast', '--best') 858 rc, out, err = assert_python_failure('-m', 'gzip', '--fast', '-d')
|
D | test_exceptions.py | 1372 rc, out, err = script_helper.assert_python_failure("-Wd", "-c", code) 1391 rc, out, err = script_helper.assert_python_failure("-c", code) 1464 rc, out, err = script_helper.assert_python_failure("-c", code) 1626 rc, out, err = script_helper.assert_python_failure("-c", code % i) 2489 rc, out, err = script_helper.assert_python_failure('-Wd', '-X', 'utf8', TESTFN) 2502 rc, out, err = script_helper.assert_python_failure('-Wd', '-X', 'utf8', TESTFN) 2515 rc, out, err = script_helper.assert_python_failure('-Wd', '-X', 'utf8', TESTFN)
|
D | test_tracemalloc.py | 7 from test.support.script_helper import (assert_python_ok, assert_python_failure, 939 ok, stdout, stderr = assert_python_failure( 970 ok, stdout, stderr = assert_python_failure(*args)
|
D | test_calendar.py | 5 from test.support.script_helper import assert_python_ok, assert_python_failure 846 rc, stdout, stderr = assert_python_failure('-m', 'calendar', *args)
|
D | test_threading.py | 9 from test.support.script_helper import assert_python_ok, assert_python_failure 369 rc, out, err = assert_python_failure("-c", """if 1: 1258 rc, out, err = assert_python_failure("-c", script)
|
D | test_sys.py | 14 from test.support.script_helper import assert_python_ok, assert_python_failure 219 rc, out, err = assert_python_failure('-c', 'raise SystemExit(47)') 225 rc, out, err = assert_python_failure('-c', code, **env_vars) 1677 rc, out, err = assert_python_failure('-c', code)
|
/aosp_15_r20/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)
|
/aosp_15_r20/external/python/cpython3/Lib/test/test_capi/ |
D | test_misc.py | 24 from test.support.script_helper import assert_python_failure, assert_python_ok 270 rc, out, err = assert_python_failure('-c', code) 298 rc, out, err = assert_python_failure('-c', code) 333 rc, out, err = assert_python_failure('-c', code) 539 rc, out, err = assert_python_failure('-c', code) 767 rc, out, err = assert_python_failure('-sSI', '-c', code) 1148 out = assert_python_failure(
|
/aosp_15_r20/external/python/cpython3/Lib/test/test_tools/ |
D | test_md5sum.py | 8 from test.support.script_helper import assert_python_ok, assert_python_failure 72 rc, out, err = assert_python_failure(self.script, '-h')
|