Searched refs:_assert_python (Results 1 – 4 of 4) sorted by relevance
/aosp_15_r20/external/python/cpython2/Lib/test/support/ |
D | script_helper.py | 24 def _assert_python(expected_success, *args, **env_vars): function 55 return _assert_python(True, *args, **env_vars) 62 return _assert_python(False, *args, **env_vars)
|
/aosp_15_r20/external/python/cpython3/Lib/test/support/ |
D | script_helper.py | 148 def _assert_python(expected_success, /, *args, **env_vars): function 166 return _assert_python(True, *args, **env_vars) 177 return _assert_python(False, *args, **env_vars)
|
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_script_helper.py | 45 script_helper._assert_python(True, '-c', 'None') 64 script_helper._assert_python(True, '-c', 'None')
|
D | test_subprocess.py | 347 def _assert_python(self, pre_args, **kwargs): member in ProcessTestCase 364 self._assert_python([doesnotexist, "-c"], executable=sys.executable) 369 self._assert_python([doesnotexist, "-c"], 375 self._assert_python([doesnotexist, "-c"], 383 self._assert_python(pre_args) 385 self._assert_python, pre_args, 392 self._assert_python([], executable=sys.executable, shell=True) 396 self._assert_python([], executable=os.fsencode(sys.executable), 401 self._assert_python([], executable=FakePath(sys.executable),
|