]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-45629: Add a test for the "freeze" tool. (gh-29222)
authorEric Snow <ericsnowcurrently@gmail.com>
Thu, 28 Oct 2021 16:14:37 +0000 (10:14 -0600)
committerGitHub <noreply@github.com>
Thu, 28 Oct 2021 16:14:37 +0000 (10:14 -0600)
commit13d9205f4057eeeef80a25d410ad123876dc60cd
tree18cbd8603e3f3a29d9f40a0bd8a4648356c205c9
parent7f61d9d84843e3445f62eb00c47902f0daa30a72
bpo-45629: Add a test for the "freeze" tool. (gh-29222)

The "freeze" tool has been part of the repo for a long time. However, it hasn't had any tests in the test suite to guard against regressions. We add such a test here. This is especially important as there has been a lot of change recently related to frozen modules, with more to come.

Note that as part of the test we build Python out-of-tree and install it in a temp dir.

https://bugs.python.org/issue45629
.gitignore
Lib/test/support/__init__.py
Lib/test/test_tools/test_freeze.py [new file with mode: 0644]
Tools/freeze/test/freeze.py [new file with mode: 0644]