diff options
author | Victor Stinner <vstinner@python.org> | 2021-05-18 06:40:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-18 06:40:37 (GMT) |
commit | 834498e178684a7e2da49b4efe1adea33e0026b0 (patch) | |
tree | c3ef0398d242eb4565e0e04b3d6806e20a5df631 /Programs/test_frozenmain.py | |
parent | eaede0ded72e67cee4a91c086847d54cb64ca74c (diff) | |
download | cpython-834498e178684a7e2da49b4efe1adea33e0026b0.zip cpython-834498e178684a7e2da49b4efe1adea33e0026b0.tar.gz cpython-834498e178684a7e2da49b4efe1adea33e0026b0.tar.bz2 |
bpo-44131: Fix Makefile for test_frozenmain (GH-26203)
Remove Programs/test_frozenmain.h Makefile target: it ran make
in parallel which caused build errors on LTO+PGO builds.
Diffstat (limited to 'Programs/test_frozenmain.py')
-rw-r--r-- | Programs/test_frozenmain.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Programs/test_frozenmain.py b/Programs/test_frozenmain.py index aa79106..928b9ea 100644 --- a/Programs/test_frozenmain.py +++ b/Programs/test_frozenmain.py @@ -1,3 +1,6 @@ +# Script used to test Py_FrozenMain(): see test_embed.test_frozenmain(). +# Run "make regen-test-frozenmain" if you modify this test. + import sys import _testinternalcapi |