diff options
author | Victor Stinner <vstinner@python.org> | 2022-06-21 08:24:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 08:24:33 (GMT) |
commit | d82e0bfe8b98a122ca443b356d81998c804b686e (patch) | |
tree | ddcead5436bbf64e5389a9e872a7002cabe6f9fb /Makefile.pre.in | |
parent | 889772fb568f14aacb9127e98e92ec2e34110b10 (diff) | |
download | cpython-d82e0bfe8b98a122ca443b356d81998c804b686e.zip cpython-d82e0bfe8b98a122ca443b356d81998c804b686e.tar.gz cpython-d82e0bfe8b98a122ca443b356d81998c804b686e.tar.bz2 |
gh-93839: Move Lib/ctypes/test/ to Lib/test/test_ctypes/ (#94041)
* Move Lib/ctypes/test/ to Lib/test/test_ctypes/
* Remove Lib/test/test_ctypes.py
* Update imports and build system.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index eaaab5e..4b8a67f 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1918,8 +1918,7 @@ LIBSUBDIRS= asyncio \ xmlrpc \ zoneinfo \ __phello__ -TESTSUBDIRS= ctypes/test \ - distutils/tests \ +TESTSUBDIRS= distutils/tests \ idlelib/idle_test \ lib2to3/tests \ lib2to3/tests/data \ @@ -1933,6 +1932,7 @@ TESTSUBDIRS= ctypes/test \ test/libregrtest test/sndhdrdata \ test/subprocessdata test/support \ test/test_asyncio \ + test/test_ctypes \ test/test_email test/test_email/data \ test/test_import \ test/test_import/data \ |