diff options
author | Victor Stinner <vstinner@python.org> | 2023-08-23 03:11:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-23 03:11:53 (GMT) |
commit | a15396146f8b4f7196e858eba577730f66ac3fb6 (patch) | |
tree | 66f2388927b903d42cb0c9644c8b42e1bf9c5d01 /Makefile.pre.in | |
parent | 12cad6155bb1291b4b6c111ef480bbc0e6a68941 (diff) | |
download | cpython-a15396146f8b4f7196e858eba577730f66ac3fb6.zip cpython-a15396146f8b4f7196e858eba577730f66ac3fb6.tar.gz cpython-a15396146f8b4f7196e858eba577730f66ac3fb6.tar.bz2 |
[3.11] gh-108303: Add Lib/test/test_cppext/ sub-directory (#108325) (#108336)
gh-108303: Add Lib/test/test_cppext/ sub-directory (#108325)
* Move test_cppext to its own directory
* Rename setup_testcppext.py to setup.py
* Rename _testcppext.cpp to extension.cpp
* The source (extension.cpp) is now also copied by the test.
(cherry picked from commit 21dda09600848ac280481f7c64f8d9516dc69bb2)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 6405d06..884bea1 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1959,6 +1959,7 @@ TESTSUBDIRS= ctypes/test \ test/support \ test/test_asyncio \ test/test_capi \ + test/test_cppext \ test/test_email \ test/test_email/data \ test/test_import \ |