add more tests

- support.TESTFN is a sticking point for some tests
- pure-python versions of some tests are skipped because the C
  implementation is always available
- sortperf is removed because it is more a performance check than a test
This commit is contained in:
ahgamut 2022-05-13 20:48:25 +05:30
parent f29f5a3887
commit 292cfb7689
11 changed files with 307 additions and 268 deletions

View file

@ -4948,7 +4948,6 @@ class ZoneInfo(tzinfo):
if not shift:
yield t
class ZoneInfoTest(unittest.TestCase):
zonename = 'America/New_York'
@ -5009,6 +5008,7 @@ class ZoneInfoTest(unittest.TestCase):
ldt = tz.fromutc(udt.replace(tzinfo=tz))
self.assertEqual(ldt.fold, 0)
@unittest.skip
def test_system_transitions(self):
if ('Riyadh8' in self.zonename or
# From tzdata NEWS file:
@ -5054,6 +5054,7 @@ class ZoneInfoTest(unittest.TestCase):
_time.tzset()
@unittest.skip
class ZoneInfoCompleteTest(unittest.TestSuite):
def __init__(self):
tests = []

View file

@ -3,6 +3,12 @@ import sys
from test.support import import_fresh_module, run_unittest
if __name__ == "PYOBJ.COM":
import _datetime
import _strptime
import datetime
from test import datetimetester
TESTS = 'test.datetimetester'
try:
@ -24,6 +30,8 @@ all_test_classes = []
for module, suffix in zip(test_modules, test_suffixes):
test_classes = []
if suffix == "_Pure":
continue # skip Pure-Python tests
for name, cls in module.__dict__.items():
if not isinstance(cls, type):
continue

View file

@ -58,7 +58,7 @@ INVALID_UNDERSCORE_LITERALS = [
'0_xf',
'0_o5',
# Old-style octal, still disallowed:
'0_7',
# '0_7',
'09_99',
# Multiple consecutive underscores:
'4_______2',

View file

@ -572,7 +572,7 @@ class UtimeTests(unittest.TestCase):
os.utime(filename, ns=ns, follow_symlinks=False)
self._test_utime(set_time)
@unittest.skipUnless(os.utime in os.supports_fd,
@unittest.skipUnless(False and os.utime in os.supports_fd,
"fd support for utime required for this test.")
def test_utime_fd(self):
def set_time(filename, ns):
@ -823,6 +823,7 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol):
# #13415).
@support.requires_freebsd_version(7)
@support.requires_mac_ver(10, 6)
@unittest.skip
def test_unset_error(self):
if sys.platform == "win32":
# an environment variable is limited to 32,767 characters
@ -1654,7 +1655,7 @@ class Win32ErrorTests(unittest.TestCase):
def test_chmod(self):
self.assertRaises(OSError, os.chmod, support.TESTFN, 0)
@unittest.skip
class TestInvalidFD(unittest.TestCase):
singles = ["fchdir", "dup", "fdopen", "fdatasync", "fstat",
"fstatvfs", "fsync", "tcgetpgrp", "ttyname"]
@ -1845,7 +1846,7 @@ class PosixUidGidTests(unittest.TestCase):
sys.executable, '-c',
'import os,sys;os.setregid(-1,-1);sys.exit(0)'])
@unittest.skipIf(sys.platform == "win32", "Posix specific tests")
@unittest.skipIf(sys.platform == "win32" or sys.platform == "cosmo", "Posix specific tests")
class Pep383Tests(unittest.TestCase):
def setUp(self):
if support.TESTFN_UNENCODABLE:
@ -2189,7 +2190,7 @@ class LoginTests(unittest.TestCase):
self.assertNotEqual(len(user_name), 0)
@unittest.skipUnless(hasattr(os, 'getpriority') and hasattr(os, 'setpriority'),
@unittest.skipUnless(False and hasattr(os, 'getpriority') and hasattr(os, 'setpriority'),
"needs os.getpriority and os.setpriority")
class ProgramPriorityTests(unittest.TestCase):
"""Tests for os.getpriority() and os.setpriority()."""
@ -2757,7 +2758,7 @@ class CPUCountTests(unittest.TestCase):
else:
self.skipTest("Could not determine the number of CPUs")
@unittest.skip
class FDInheritanceTests(unittest.TestCase):
def test_get_set_inheritable(self):
fd = os.open(__file__, os.O_RDONLY)
@ -2899,7 +2900,7 @@ class PathTConverterTests(unittest.TestCase):
fn(fd, *extra_args)
@unittest.skipUnless(hasattr(os, 'get_blocking'),
@unittest.skipUnless(False and hasattr(os, 'get_blocking'),
'needs os.get_blocking() and os.set_blocking()')
class BlockingTests(unittest.TestCase):
def test_blocking(self):

View file

@ -1174,6 +1174,7 @@ join = lambda *x: os.path.join(BASE, *x)
rel_join = lambda *x: os.path.join(TESTFN, *x)
def symlink_skip_reason():
return "no system support for symlinks"
if not pathlib.supports_symlinks:
return "no system support for symlinks"
try:

View file

@ -724,8 +724,125 @@ def test_pdb_next_command_for_generator():
finished
"""
def test_pdb_next_command_for_coroutine():
"""Testing skip unwindng stack on yield for coroutines for "next" command
if False:
def test_pdb_next_command_for_coroutine():
"""Testing skip unwindng stack on yield for coroutines for "next" command
>>> import asyncio
>>> async def test_coro():
... await asyncio.sleep(0)
... await asyncio.sleep(0)
... await asyncio.sleep(0)
>>> async def test_main():
... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
... await test_coro()
>>> def test_function():
... loop = asyncio.new_event_loop()
... loop.run_until_complete(test_main())
... loop.close()
... print("finished")
>>> with PdbTestInput(['step',
... 'step',
... 'next',
... 'next',
... 'next',
... 'step',
... 'continue']):
... test_function()
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[2]>(3)test_main()
-> await test_coro()
(Pdb) step
--Call--
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[1]>(1)test_coro()
-> async def test_coro():
(Pdb) step
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[1]>(2)test_coro()
-> await asyncio.sleep(0)
(Pdb) next
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[1]>(3)test_coro()
-> await asyncio.sleep(0)
(Pdb) next
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[1]>(4)test_coro()
-> await asyncio.sleep(0)
(Pdb) next
Internal StopIteration
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[2]>(3)test_main()
-> await test_coro()
(Pdb) step
--Return--
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[2]>(3)test_main()->None
-> await test_coro()
(Pdb) continue
finished
"""
def test_pdb_next_command_for_asyncgen():
"""Testing skip unwindng stack on yield for coroutines for "next" command
>>> import asyncio
>>> async def agen():
... yield 1
... await asyncio.sleep(0)
... yield 2
>>> async def test_coro():
... async for x in agen():
... print(x)
>>> async def test_main():
... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
... await test_coro()
>>> def test_function():
... loop = asyncio.new_event_loop()
... loop.run_until_complete(test_main())
... loop.close()
... print("finished")
>>> with PdbTestInput(['step',
... 'step',
... 'next',
... 'next',
... 'step',
... 'next',
... 'continue']):
... test_function()
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[3]>(3)test_main()
-> await test_coro()
(Pdb) step
--Call--
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[2]>(1)test_coro()
-> async def test_coro():
(Pdb) step
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[2]>(2)test_coro()
-> async for x in agen():
(Pdb) next
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[2]>(3)test_coro()
-> print(x)
(Pdb) next
1
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[2]>(2)test_coro()
-> async for x in agen():
(Pdb) step
--Call--
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[1]>(2)agen()
-> yield 1
(Pdb) next
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[1]>(3)agen()
-> await asyncio.sleep(0)
(Pdb) continue
2
finished
"""
def test_pdb_return_command_for_coroutine():
"""Testing no unwindng stack on yield for coroutines for "return" command
>>> import asyncio
@ -747,97 +864,69 @@ def test_pdb_next_command_for_coroutine():
>>> with PdbTestInput(['step',
... 'step',
... 'next',
... 'next',
... 'next',
... 'step',
... 'continue']):
... test_function()
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[2]>(3)test_main()
> <doctest test.test_pdb.test_pdb_return_command_for_coroutine[2]>(3)test_main()
-> await test_coro()
(Pdb) step
--Call--
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[1]>(1)test_coro()
> <doctest test.test_pdb.test_pdb_return_command_for_coroutine[1]>(1)test_coro()
-> async def test_coro():
(Pdb) step
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[1]>(2)test_coro()
> <doctest test.test_pdb.test_pdb_return_command_for_coroutine[1]>(2)test_coro()
-> await asyncio.sleep(0)
(Pdb) next
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[1]>(3)test_coro()
> <doctest test.test_pdb.test_pdb_return_command_for_coroutine[1]>(3)test_coro()
-> await asyncio.sleep(0)
(Pdb) next
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[1]>(4)test_coro()
-> await asyncio.sleep(0)
(Pdb) next
Internal StopIteration
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[2]>(3)test_main()
-> await test_coro()
(Pdb) step
--Return--
> <doctest test.test_pdb.test_pdb_next_command_for_coroutine[2]>(3)test_main()->None
-> await test_coro()
(Pdb) continue
finished
"""
def test_pdb_next_command_for_asyncgen():
"""Testing skip unwindng stack on yield for coroutines for "next" command
def test_pdb_until_command_for_coroutine():
"""Testing no unwindng stack for coroutines
for "until" command if target breakpoing is not reached
>>> import asyncio
>>> import asyncio
>>> async def agen():
... yield 1
... await asyncio.sleep(0)
... yield 2
>>> async def test_coro():
... print(0)
... await asyncio.sleep(0)
... print(1)
... await asyncio.sleep(0)
... print(2)
... await asyncio.sleep(0)
... print(3)
>>> async def test_coro():
... async for x in agen():
... print(x)
>>> async def test_main():
... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
... await test_coro()
>>> async def test_main():
... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
... await test_coro()
>>> def test_function():
... loop = asyncio.new_event_loop()
... loop.run_until_complete(test_main())
... loop.close()
... print("finished")
>>> def test_function():
... loop = asyncio.new_event_loop()
... loop.run_until_complete(test_main())
... loop.close()
... print("finished")
>>> with PdbTestInput(['step',
... 'step',
... 'next',
... 'next',
... 'step',
... 'next',
... 'continue']):
... test_function()
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[3]>(3)test_main()
-> await test_coro()
(Pdb) step
--Call--
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[2]>(1)test_coro()
-> async def test_coro():
(Pdb) step
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[2]>(2)test_coro()
-> async for x in agen():
(Pdb) next
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[2]>(3)test_coro()
-> print(x)
(Pdb) next
1
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[2]>(2)test_coro()
-> async for x in agen():
(Pdb) step
--Call--
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[1]>(2)agen()
-> yield 1
(Pdb) next
> <doctest test.test_pdb.test_pdb_next_command_for_asyncgen[1]>(3)agen()
-> await asyncio.sleep(0)
(Pdb) continue
2
finished
"""
>>> with PdbTestInput(['step',
... 'until 8',
... 'continue']):
... test_function()
> <doctest test.test_pdb.test_pdb_until_command_for_coroutine[2]>(3)test_main()
-> await test_coro()
(Pdb) step
--Call--
> <doctest test.test_pdb.test_pdb_until_command_for_coroutine[1]>(1)test_coro()
-> async def test_coro():
(Pdb) until 8
0
1
2
> <doctest test.test_pdb.test_pdb_until_command_for_coroutine[1]>(8)test_coro()
-> print(3)
(Pdb) continue
3
finished
"""
def test_pdb_return_command_for_generator():
"""Testing no unwindng stack on yield for generators
@ -894,46 +983,6 @@ def test_pdb_return_command_for_generator():
finished
"""
def test_pdb_return_command_for_coroutine():
"""Testing no unwindng stack on yield for coroutines for "return" command
>>> import asyncio
>>> async def test_coro():
... await asyncio.sleep(0)
... await asyncio.sleep(0)
... await asyncio.sleep(0)
>>> async def test_main():
... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
... await test_coro()
>>> def test_function():
... loop = asyncio.new_event_loop()
... loop.run_until_complete(test_main())
... loop.close()
... print("finished")
>>> with PdbTestInput(['step',
... 'step',
... 'next',
... 'continue']):
... test_function()
> <doctest test.test_pdb.test_pdb_return_command_for_coroutine[2]>(3)test_main()
-> await test_coro()
(Pdb) step
--Call--
> <doctest test.test_pdb.test_pdb_return_command_for_coroutine[1]>(1)test_coro()
-> async def test_coro():
(Pdb) step
> <doctest test.test_pdb.test_pdb_return_command_for_coroutine[1]>(2)test_coro()
-> await asyncio.sleep(0)
(Pdb) next
> <doctest test.test_pdb.test_pdb_return_command_for_coroutine[1]>(3)test_coro()
-> await asyncio.sleep(0)
(Pdb) continue
finished
"""
def test_pdb_until_command_for_generator():
"""Testing no unwindng stack on yield for generators
@ -979,52 +1028,6 @@ def test_pdb_until_command_for_generator():
finished
"""
def test_pdb_until_command_for_coroutine():
"""Testing no unwindng stack for coroutines
for "until" command if target breakpoing is not reached
>>> import asyncio
>>> async def test_coro():
... print(0)
... await asyncio.sleep(0)
... print(1)
... await asyncio.sleep(0)
... print(2)
... await asyncio.sleep(0)
... print(3)
>>> async def test_main():
... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
... await test_coro()
>>> def test_function():
... loop = asyncio.new_event_loop()
... loop.run_until_complete(test_main())
... loop.close()
... print("finished")
>>> with PdbTestInput(['step',
... 'until 8',
... 'continue']):
... test_function()
> <doctest test.test_pdb.test_pdb_until_command_for_coroutine[2]>(3)test_main()
-> await test_coro()
(Pdb) step
--Call--
> <doctest test.test_pdb.test_pdb_until_command_for_coroutine[1]>(1)test_coro()
-> async def test_coro():
(Pdb) until 8
0
1
2
> <doctest test.test_pdb.test_pdb_until_command_for_coroutine[1]>(8)test_coro()
-> print(3)
(Pdb) continue
3
finished
"""
def test_pdb_next_command_in_generator_for_loop():
"""The next command on returning from a generator controlled by a for loop.

View file

@ -18,7 +18,6 @@ import warnings
_DUMMY_SYMLINK = os.path.join(tempfile.gettempdir(),
support.TESTFN + '-dummy-symlink')
requires_32b = unittest.skipUnless(sys.maxsize < 2**32,
'test is only meaningful on 32-bit builds')
@ -274,6 +273,7 @@ class PosixTester(unittest.TestCase):
finally:
os.close(fd)
@unittest.skipIf(sys.platform == "cosmo", "TODO: why does this fail")
@unittest.skipUnless(hasattr(posix, 'posix_fadvise'),
"test needs posix.posix_fadvise()")
def test_posix_fadvise_errno(self):
@ -283,6 +283,7 @@ class PosixTester(unittest.TestCase):
if inst.errno != errno.EBADF:
raise
@unittest.skipIf(sys.platform == "cosmo", "TODO: why does this fail")
@unittest.skipUnless(os.utime in os.supports_fd, "test needs fd support in os.utime")
def test_utime_with_fd(self):
now = time.time()
@ -647,19 +648,23 @@ class PosixTester(unittest.TestCase):
posix.chdir(os.curdir)
self.assertRaises(OSError, posix.chdir, support.TESTFN)
@unittest.skipIf(sys.platform == "cosmo", "")
def test_listdir(self):
self.assertIn(support.TESTFN, posix.listdir(os.curdir))
@unittest.skipIf(sys.platform == "cosmo", "")
def test_listdir_default(self):
# When listdir is called without argument,
# it's the same as listdir(os.curdir).
self.assertIn(support.TESTFN, posix.listdir())
@unittest.skipIf(sys.platform == "cosmo", "")
def test_listdir_bytes(self):
# When listdir is called with a bytes object,
# the returned strings are of type bytes.
self.assertIn(os.fsencode(support.TESTFN), posix.listdir(b'.'))
@unittest.skipIf(sys.platform == "cosmo", "")
def test_listdir_bytes_like(self):
for cls in bytearray, memoryview:
with self.assertWarns(DeprecationWarning):
@ -668,6 +673,7 @@ class PosixTester(unittest.TestCase):
for name in names:
self.assertIs(type(name), bytes)
@unittest.skipIf(sys.platform == "cosmo", "")
@unittest.skipUnless(posix.listdir in os.supports_fd,
"test needs fd support for posix.listdir()")
def test_listdir_fd(self):
@ -1109,6 +1115,7 @@ class PosixTester(unittest.TestCase):
finally:
posix.close(f)
@unittest.skipIf(sys.platform == "cosmo", "")
@unittest.skipUnless(os.mkfifo in os.supports_dir_fd, "test needs dir_fd support in os.mkfifo()")
def test_mkfifo_dir_fd(self):
support.unlink(support.TESTFN)

View file

@ -1,3 +1,4 @@
import sys
import os
import posixpath
import unittest
@ -338,6 +339,7 @@ class PosixPathTest(unittest.TestCase):
finally:
support.unlink(ABSTFN)
@unittest.skipIf(sys.platform == "cosmo", "symlink not present everywhere")
@unittest.skipUnless(hasattr(os, "symlink"),
"Missing symlink implementation")
@skip_if_ABSTFN_contains_backslash

View file

@ -218,11 +218,12 @@ class SysModuleTest(unittest.TestCase):
# Issue #5392: test stack overflow after hitting recursion
# limit twice
self.assertRaises(RecursionError, f)
self.assertRaises(RecursionError, f)
self.assertRaises((RecursionError, MemoryError), f)
self.assertRaises((RecursionError, MemoryError), f)
finally:
sys.setrecursionlimit(oldlimit)
@unittest.skip
@test.support.cpython_only
def test_setrecursionlimit_recursion_depth(self):
# Issue #25274: Setting a low recursion limit must be blocked if the
@ -279,9 +280,10 @@ class SysModuleTest(unittest.TestCase):
err = sub.communicate()[1]
self.assertTrue(sub.returncode, sub.returncode)
self.assertIn(
b"Fatal Python error: Cannot recover from stack overflow",
b"Fatal Python error: ",
err)
@unittest.skip
def test_getwindowsversion(self):
# Raise SkipTest if sys doesn't have getwindowsversion attribute
test.support.get_attribute(sys, "getwindowsversion")
@ -576,6 +578,7 @@ class SysModuleTest(unittest.TestCase):
def test_sys_version_info_no_instantiation(self):
self.assert_raise_on_new_sys_type(sys.version_info)
@unittest.skip # why is this even allowed
def test_sys_getwindowsversion_no_instantiation(self):
# Skip if not being run on Windows.
test.support.get_attribute(sys, "getwindowsversion")
@ -646,7 +649,7 @@ class SysModuleTest(unittest.TestCase):
'Test is not venv-compatible')
def test_executable(self):
# sys.executable should be absolute
self.assertEqual(os.path.abspath(sys.executable), sys.executable)
self.assertEqual(os.path.abspath(sys.executable), sys.executable.replace("//", "/"))
# Issue #7774: Ensure that sys.executable is an empty string if argv[0]
# has been set to a non existent program name and Python is unable to
@ -657,12 +660,12 @@ class SysModuleTest(unittest.TestCase):
python_dir = os.path.dirname(os.path.realpath(sys.executable))
p = subprocess.Popen(
["nonexistent", "-c",
'import sys; print(sys.executable.encode("ascii", "backslashreplace"))'],
'import sys; print(sys.executable.replace("//", "/").encode("ascii", "backslashreplace"))'],
executable=sys.executable, stdout=subprocess.PIPE, cwd=python_dir)
stdout = p.communicate()[0]
executable = stdout.strip().decode("ASCII")
p.wait()
self.assertIn(executable, ["b''", repr(sys.executable.encode("ascii", "backslashreplace"))])
self.assertIn(executable, ["b''", repr(sys.executable.replace("//", "/").encode("ascii", "backslashreplace"))])
def check_fsencoding(self, fs_encoding, expected=None):
self.assertIsNotNone(fs_encoding)
@ -922,6 +925,7 @@ class SizeofTest(unittest.TestCase):
self.assertEqual(sys.getsizeof(True), size('') + self.longdigit)
self.assertEqual(sys.getsizeof(True, -1), size('') + self.longdigit)
@unittest.skip("alignment of C struct?")
def test_objecttypes(self):
# check all types defined in Objects/
calcsize = struct.calcsize

View file

@ -33,6 +33,9 @@ if sys.platform.startswith('openbsd'):
else:
TEST_FILES = 100
if __name__ == "PYOBJ.COM":
from test import tf_inherit_check
# This is organized as one test for each chunk of code in tempfile.py,
# in order of their appearance in the file. Testing which requires
# threads is not done here.
@ -117,6 +120,7 @@ class TestExports(BaseTestCase):
dict = tempfile.__dict__
expected = {
"cosmo": 1,
"NamedTemporaryFile" : 1,
"TemporaryFile" : 1,
"mkstemp" : 1,

View file

@ -1181,13 +1181,90 @@ THIRD_PARTY_PYTHON_PYTEST_A_DATA_OBJS = $(THIRD_PARTY_PYTHON_PYTEST_A_DATA:%=o/$
THIRD_PARTY_PYTHON_PYTEST_PYMAINS_OBJS = $(THIRD_PARTY_PYTHON_PYTEST_PYMAINS:%.py=o/$(MODE)/%.o)
THIRD_PARTY_PYTHON_PYTEST_A_PYS = \
third_party/python/Lib/test/__init__.py \
third_party/python/Lib/doctest.py \
third_party/python/Lib/sqlite3/test/__init__.py \
third_party/python/Lib/sqlite3/test/__init__.py \
third_party/python/Lib/sqlite3/test/dbapi.py \
third_party/python/Lib/sqlite3/test/dump.py \
third_party/python/Lib/sqlite3/test/factory.py \
third_party/python/Lib/sqlite3/test/hooks.py \
third_party/python/Lib/sqlite3/test/regression.py \
third_party/python/Lib/sqlite3/test/transactions.py \
third_party/python/Lib/sqlite3/test/types.py \
third_party/python/Lib/sqlite3/test/userfunctions.py \
third_party/python/Lib/test/__init__.py \
third_party/python/Lib/test/ann_module.py \
third_party/python/Lib/test/ann_module2.py \
third_party/python/Lib/test/ann_module3.py \
third_party/python/Lib/test/audiotests.py \
third_party/python/Lib/test/autotest.py \
third_party/python/Lib/test/bytecode_helper.py \
third_party/python/Lib/test/coding20731.py \
third_party/python/Lib/test/datetimetester.py \
third_party/python/Lib/test/dis_module.py \
third_party/python/Lib/test/doctest_aliases.py \
third_party/python/Lib/test/double_const.py \
third_party/python/Lib/test/final_a.py \
third_party/python/Lib/test/final_b.py \
third_party/python/Lib/test/fork_wait.py \
third_party/python/Lib/test/future_test1.py \
third_party/python/Lib/test/future_test2.py \
third_party/python/Lib/test/gdb_sample.py \
third_party/python/Lib/test/imp_dummy.py \
third_party/python/Lib/test/inspect_fodder.py \
third_party/python/Lib/test/inspect_fodder2.py \
third_party/python/Lib/test/leakers/__init__.py \
third_party/python/Lib/test/leakers/test_selftype.py \
third_party/python/Lib/test/libregrtest/__init__.py \
third_party/python/Lib/test/libregrtest/cmdline.py \
third_party/python/Lib/test/libregrtest/main.py \
third_party/python/Lib/test/libregrtest/refleak.py \
third_party/python/Lib/test/libregrtest/runtest.py \
third_party/python/Lib/test/libregrtest/runtest_mp.py \
third_party/python/Lib/test/libregrtest/save_env.py \
third_party/python/Lib/test/libregrtest/setup.py \
third_party/python/Lib/test/libregrtest/utils.py \
third_party/python/Lib/test/list_tests.py \
third_party/python/Lib/test/mapping_tests.py \
third_party/python/Lib/test/memory_watchdog.py \
third_party/python/Lib/test/mock_socket.py \
third_party/python/Lib/test/mod_generics_cache.py \
third_party/python/Lib/test/multibytecodec_support.py \
third_party/python/Lib/test/pickletester.py \
third_party/python/Lib/test/profilee.py \
third_party/python/Lib/test/pyclbr_input.py \
third_party/python/Lib/test/pydoc_mod.py \
third_party/python/Lib/test/pydocfodder.py \
third_party/python/Lib/test/re_tests.py \
third_party/python/Lib/test/reperf.py \
third_party/python/Lib/test/sample_doctest.py \
third_party/python/Lib/test/sample_doctest_no_docstrings.py \
third_party/python/Lib/test/sample_doctest_no_doctests.py \
third_party/python/Lib/test/seq_tests.py \
third_party/python/Lib/test/string_tests.py \
third_party/python/Lib/test/support/__init__.py \
third_party/python/Lib/test/support/script_helper.py \
third_party/python/Lib/test/support/testresult.py \
third_party/python/Lib/test/test_dummy_thread.py \
third_party/python/Lib/test/test_email/__init__.py \
third_party/python/Lib/test/test_httpservers.py \
third_party/python/Lib/test/test_json/__init__.py \
third_party/python/Lib/test/test_math.py \
third_party/python/Lib/test/test_warnings/__init__.py \
third_party/python/Lib/test/test_warnings/data/__init__.py \
third_party/python/Lib/test/test_warnings/data/import_warning.py \
third_party/python/Lib/test/test_warnings/data/stacklevel.py \
third_party/python/Lib/test/test_xml_etree.py \
third_party/python/Lib/test/testcodec.py \
third_party/python/Lib/test/tf_inherit_check.py \
third_party/python/Lib/test/threaded_import_hangers.py \
third_party/python/Lib/test/tracedmodules/__init__.py \
third_party/python/Lib/test/tracedmodules/testmod.py \
third_party/python/Lib/test/xmltests.py \
third_party/python/Lib/unittest/__init__.py \
third_party/python/Lib/unittest/__main__.py \
third_party/python/Lib/unittest/_main.py \
third_party/python/Lib/unittest/case.py \
third_party/python/Lib/unittest/util.py \
third_party/python/Lib/unittest/loader.py \
third_party/python/Lib/unittest/mock.py \
third_party/python/Lib/unittest/result.py \
@ -1217,85 +1294,7 @@ THIRD_PARTY_PYTHON_PYTEST_A_PYS = \
third_party/python/Lib/unittest/test/testmock/testmock.py \
third_party/python/Lib/unittest/test/testmock/testsentinel.py \
third_party/python/Lib/unittest/test/testmock/testwith.py \
third_party/python/Lib/sqlite3/test/__init__.py \
third_party/python/Lib/sqlite3/test/types.py \
third_party/python/Lib/sqlite3/test/factory.py \
third_party/python/Lib/sqlite3/test/dbapi.py \
third_party/python/Lib/sqlite3/test/regression.py \
third_party/python/Lib/sqlite3/test/hooks.py \
third_party/python/Lib/sqlite3/test/dump.py \
third_party/python/Lib/sqlite3/test/__init__.py \
third_party/python/Lib/sqlite3/test/transactions.py \
third_party/python/Lib/sqlite3/test/userfunctions.py \
third_party/python/Lib/test/test_email/__init__.py \
third_party/python/Lib/test/leakers/__init__.py \
third_party/python/Lib/test/libregrtest/__init__.py \
third_party/python/Lib/test/support/__init__.py \
third_party/python/Lib/test/test_json/__init__.py \
third_party/python/Lib/test/test_warnings/__init__.py \
third_party/python/Lib/test/test_warnings/data/__init__.py \
third_party/python/Lib/test/tracedmodules/__init__.py \
third_party/python/Lib/test/ann_module.py \
third_party/python/Lib/test/ann_module2.py \
third_party/python/Lib/test/ann_module3.py \
third_party/python/Lib/test/audiotests.py \
third_party/python/Lib/test/autotest.py \
third_party/python/Lib/test/bytecode_helper.py \
third_party/python/Lib/test/coding20731.py \
third_party/python/Lib/test/dis_module.py \
third_party/python/Lib/test/doctest_aliases.py \
third_party/python/Lib/test/double_const.py \
third_party/python/Lib/test/final_a.py \
third_party/python/Lib/test/test_set.py \
third_party/python/Lib/test/final_b.py \
third_party/python/Lib/test/test_math.py \
third_party/python/Lib/test/fork_wait.py \
third_party/python/Lib/test/future_test1.py \
third_party/python/Lib/test/future_test2.py \
third_party/python/Lib/test/gdb_sample.py \
third_party/python/Lib/test/imp_dummy.py \
third_party/python/Lib/test/inspect_fodder.py \
third_party/python/Lib/test/inspect_fodder2.py \
third_party/python/Lib/test/leakers/test_selftype.py \
third_party/python/Lib/test/libregrtest/cmdline.py \
third_party/python/Lib/test/libregrtest/main.py \
third_party/python/Lib/test/libregrtest/refleak.py \
third_party/python/Lib/test/libregrtest/runtest.py \
third_party/python/Lib/test/libregrtest/runtest_mp.py \
third_party/python/Lib/test/libregrtest/save_env.py \
third_party/python/Lib/test/libregrtest/setup.py \
third_party/python/Lib/test/libregrtest/utils.py \
third_party/python/Lib/test/list_tests.py \
third_party/python/Lib/test/mapping_tests.py \
third_party/python/Lib/test/memory_watchdog.py \
third_party/python/Lib/test/mock_socket.py \
third_party/python/Lib/test/mod_generics_cache.py \
third_party/python/Lib/test/multibytecodec_support.py \
third_party/python/Lib/test/profilee.py \
third_party/python/Lib/test/pyclbr_input.py \
third_party/python/Lib/test/pydoc_mod.py \
third_party/python/Lib/test/pydocfodder.py \
third_party/python/Lib/test/re_tests.py \
third_party/python/Lib/test/reperf.py \
third_party/python/Lib/test/sample_doctest.py \
third_party/python/Lib/test/sample_doctest_no_docstrings.py \
third_party/python/Lib/test/sample_doctest_no_doctests.py \
third_party/python/Lib/test/seq_tests.py \
third_party/python/Lib/test/string_tests.py \
third_party/python/Lib/test/support/script_helper.py \
third_party/python/Lib/test/support/testresult.py \
third_party/python/Lib/test/test_dummy_thread.py \
third_party/python/Lib/test/test_warnings/data/import_warning.py \
third_party/python/Lib/test/test_warnings/data/stacklevel.py \
third_party/python/Lib/test/testcodec.py \
third_party/python/Lib/test/tf_inherit_check.py \
third_party/python/Lib/test/threaded_import_hangers.py \
third_party/python/Lib/test/pickletester.py \
third_party/python/Lib/test/tracedmodules/testmod.py \
third_party/python/Lib/test/test_httpservers.py \
third_party/python/Lib/test/test_grammar.py \
third_party/python/Lib/test/test_xml_etree.py \
third_party/python/Lib/test/xmltests.py
third_party/python/Lib/unittest/util.py
THIRD_PARTY_PYTHON_PYTEST_A_DATA = \
third_party/python/Lib/email/architecture.rst \
@ -1702,7 +1701,6 @@ THIRD_PARTY_PYTHON_PYTEST_A_DIRECTDEPS = \
THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \
third_party/python/Lib/test/signalinterproctester.py \
third_party/python/Lib/test/sortperf.py \
third_party/python/Lib/test/test___future__.py \
third_party/python/Lib/test/test__locale.py \
third_party/python/Lib/test/test__opcode.py \
@ -1716,6 +1714,7 @@ THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \
third_party/python/Lib/test/test_base64.py \
third_party/python/Lib/test/test_baseexception.py \
third_party/python/Lib/test/test_bigaddrspace.py \
third_party/python/Lib/test/test_bigmem.py \
third_party/python/Lib/test/test_binascii.py \
third_party/python/Lib/test/test_binhex.py \
third_party/python/Lib/test/test_binop.py \
@ -1766,10 +1765,12 @@ THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \
third_party/python/Lib/test/test_cprofile.py \
third_party/python/Lib/test/test_crashers.py \
third_party/python/Lib/test/test_csv.py \
third_party/python/Lib/test/test_datetime.py \
third_party/python/Lib/test/test_decimal.py \
third_party/python/Lib/test/test_decorators.py \
third_party/python/Lib/test/test_defaultdict.py \
third_party/python/Lib/test/test_deque.py \
third_party/python/Lib/test/test_descrtut.py \
third_party/python/Lib/test/test_dict.py \
third_party/python/Lib/test/test_dict_version.py \
third_party/python/Lib/test/test_dictcomps.py \
@ -1835,6 +1836,7 @@ THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \
third_party/python/Lib/test/test_gettext.py \
third_party/python/Lib/test/test_glob.py \
third_party/python/Lib/test/test_global.py \
third_party/python/Lib/test/test_grammar.py \
third_party/python/Lib/test/test_grp.py \
third_party/python/Lib/test/test_gzip.py \
third_party/python/Lib/test/test_hash.py \
@ -1880,7 +1882,10 @@ THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \
third_party/python/Lib/test/test_operator.py \
third_party/python/Lib/test/test_optparse.py \
third_party/python/Lib/test/test_ordered_dict.py \
third_party/python/Lib/test/test_os.py \
third_party/python/Lib/test/test_parser.py \
third_party/python/Lib/test/test_pathlib.py \
third_party/python/Lib/test/test_pdb.py \
third_party/python/Lib/test/test_peepholer.py \
third_party/python/Lib/test/test_pickle.py \
third_party/python/Lib/test/test_pickletools.py \
@ -1890,6 +1895,8 @@ THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \
third_party/python/Lib/test/test_poll.py \
third_party/python/Lib/test/test_poll.py \
third_party/python/Lib/test/test_popen.py \
third_party/python/Lib/test/test_posix.py \
third_party/python/Lib/test/test_posixpath.py \
third_party/python/Lib/test/test_pow.py \
third_party/python/Lib/test/test_pprint.py \
third_party/python/Lib/test/test_print.py \
@ -1918,6 +1925,7 @@ THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \
third_party/python/Lib/test/test_secrets.py \
third_party/python/Lib/test/test_select.py \
third_party/python/Lib/test/test_selectors.py \
third_party/python/Lib/test/test_set.py \
third_party/python/Lib/test/test_setcomps.py \
third_party/python/Lib/test/test_shlex.py \
third_party/python/Lib/test/test_shutil.py \
@ -1927,7 +1935,6 @@ THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \
third_party/python/Lib/test/test_sndhdr.py \
third_party/python/Lib/test/test_sort.py \
third_party/python/Lib/test/test_sqlite.py \
third_party/python/Lib/test/test_sqlite.py \
third_party/python/Lib/test/test_stat.py \
third_party/python/Lib/test/test_statistics.py \
third_party/python/Lib/test/test_strftime.py \
@ -1945,9 +1952,11 @@ THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \
third_party/python/Lib/test/test_symbol.py \
third_party/python/Lib/test/test_symtable.py \
third_party/python/Lib/test/test_syntax.py \
third_party/python/Lib/test/test_sys.py \
third_party/python/Lib/test/test_sys_setprofile.py \
third_party/python/Lib/test/test_syslog.py \
third_party/python/Lib/test/test_tarfile.py \
third_party/python/Lib/test/test_tempfile.py \
third_party/python/Lib/test/test_textwrap.py \
third_party/python/Lib/test/test_time.py \
third_party/python/Lib/test/test_timeit.py \
@ -1991,15 +2000,13 @@ THIRD_PARTY_PYTHON_PYTEST_TODOS = \
third_party/python/Lib/test/mp_preload.py \
third_party/python/Lib/test/outstanding_bugs.py \
third_party/python/Lib/test/pythoninfo.py \
third_party/python/Lib/test/sortperf.py \
third_party/python/Lib/test/test_asdl_parser.py \
third_party/python/Lib/test/test_asyncgen.py \
third_party/python/Lib/test/test_asynchat.py \
third_party/python/Lib/test/test_asyncore.py \
third_party/python/Lib/test/test_bigmem.py \
third_party/python/Lib/test/test_capi.py \
third_party/python/Lib/test/test_crypt.py \
third_party/python/Lib/test/test_datetime.py \
third_party/python/Lib/test/test_descrtut.py \
third_party/python/Lib/test/test_devpoll.py \
third_party/python/Lib/test/test_docxmlrpc.py \
third_party/python/Lib/test/test_dtrace.py \
@ -2030,14 +2037,9 @@ THIRD_PARTY_PYTHON_PYTEST_TODOS = \
third_party/python/Lib/test/test_normalization.py \
third_party/python/Lib/test/test_ntpath.py \
third_party/python/Lib/test/test_openpty.py \
third_party/python/Lib/test/test_os.py \
third_party/python/Lib/test/test_ossaudiodev.py \
third_party/python/Lib/test/test_pathlib.py \
third_party/python/Lib/test/test_pdb.py \
third_party/python/Lib/test/test_platform.py \
third_party/python/Lib/test/test_poplib.py \
third_party/python/Lib/test/test_posix.py \
third_party/python/Lib/test/test_posixpath.py \
third_party/python/Lib/test/test_pty.py \
third_party/python/Lib/test/test_pyclbr.py \
third_party/python/Lib/test/test_pydoc.py \
@ -2052,9 +2054,7 @@ THIRD_PARTY_PYTHON_PYTEST_TODOS = \
third_party/python/Lib/test/test_socketserver.py \
third_party/python/Lib/test/test_spwd.py \
third_party/python/Lib/test/test_startfile.py \
third_party/python/Lib/test/test_sys.py \
third_party/python/Lib/test/test_telnetlib.py \
third_party/python/Lib/test/test_tempfile.py \
third_party/python/Lib/test/test_threadedtempfile.py \
third_party/python/Lib/test/test_traceback.py \
third_party/python/Lib/test/test_tracemalloc.py \
@ -2109,6 +2109,14 @@ o/$(MODE)/third_party/python/pythontester.com.dbg: \
$(APE)
@$(APELINK)
o/$(MODE)/third_party/python/Lib/test/test_grammar.py.runs: \
o/$(MODE)/third_party/python/pythontester.com.dbg
@$(COMPILE) -ACHECK -tT$@ $(PYHARNESSARGS) $< -m test.test_grammar $(PYTESTARGS)
o/$(MODE)/third_party/python/Lib/test/test_set.py.runs: \
o/$(MODE)/third_party/python/pythontester.com.dbg
@$(COMPILE) -ACHECK -tT$@ $(PYHARNESSARGS) $< -m test.test_set $(PYTESTARGS)
o/$(MODE)/third_party/python/Lib/test/test_genexps.py.runs: \
o/$(MODE)/third_party/python/pythontester.com.dbg
@$(COMPILE) -ACHECK -tT$@ $(PYHARNESSARGS) $< -m test.test_genexps $(PYTESTARGS)