summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-12-22 11:06:46 (GMT)
committerGitHub <noreply@github.com>2023-12-22 11:06:46 (GMT)
commit4259acd39464b292075f75b7604535cb6158c25b (patch)
tree7fba4489a32e056aae5bd909b10c6657b5b1ea64
parentd8825c2e76e5b0e723fb1210fc2816bbc1b7f56e (diff)
downloadcpython-4259acd39464b292075f75b7604535cb6158c25b.zip
cpython-4259acd39464b292075f75b7604535cb6158c25b.tar.gz
cpython-4259acd39464b292075f75b7604535cb6158c25b.tar.bz2
[3.12] gh-113384: Skip test_freeze for framework builds on macOS (GH-113390) (#113395)
gh-113384: Skip test_freeze for framework builds on macOS (GH-113390) (cherry picked from commit bee627c1e29a070562d1a540a6e513d0daa322f5) Co-authored-by: Ronald Oussoren <ronaldoussoren@mac.com>
-rw-r--r--Lib/test/test_tools/test_freeze.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_tools/test_freeze.py b/Lib/test/test_tools/test_freeze.py
index 671ec29..0e7ed67 100644
--- a/Lib/test/test_tools/test_freeze.py
+++ b/Lib/test/test_tools/test_freeze.py
@@ -14,6 +14,8 @@ with imports_under_tool('freeze', 'test'):
@support.requires_zlib()
@unittest.skipIf(sys.platform.startswith('win'), 'not supported on Windows')
+@unittest.skipIf(sys.platform == 'darwin' and sys._framework,
+ 'not supported for frameworks builds on macOS')
@support.skip_if_buildbot('not all buildbots have enough space')
# gh-103053: Skip test if Python is built with Profile Guided Optimization
# (PGO), since the test is just too slow in this case.