diff options
author | Victor Stinner <vstinner@python.org> | 2023-10-06 01:08:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-06 01:08:34 (GMT) |
commit | a4baa9e8ac62cac3ea6363b15ea585b1998ea1f9 (patch) | |
tree | ce42c9746810873362ed236ba7d90ee58014c0fd /Misc | |
parent | a155f9f3427578ca5706d27e20bd0576f0395073 (diff) | |
download | cpython-a4baa9e8ac62cac3ea6363b15ea585b1998ea1f9.zip cpython-a4baa9e8ac62cac3ea6363b15ea585b1998ea1f9.tar.gz cpython-a4baa9e8ac62cac3ea6363b15ea585b1998ea1f9.tar.bz2 |
gh-103053: Fix test_tools.test_freeze on FreeBSD (#110451)
Fix test_tools.test_freeze on FreeBSD: run "make distclean" instead
of "make clean" in the copied source directory to remove also the
"python" program.
Other test_freeze changes:
* Log executed commands and directories, and the current directory.
* No longer uses make -C option to change the directory, instead use
subprocess cwd parameter.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2023-10-06-02-32-18.gh-issue-103053.VfxBLI.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2023-10-06-02-32-18.gh-issue-103053.VfxBLI.rst b/Misc/NEWS.d/next/Tests/2023-10-06-02-32-18.gh-issue-103053.VfxBLI.rst new file mode 100644 index 0000000..90a7ca5 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2023-10-06-02-32-18.gh-issue-103053.VfxBLI.rst @@ -0,0 +1,3 @@ +Fix test_tools.test_freeze on FreeBSD: run "make distclean" instead of "make +clean" in the copied source directory to remove also the "python" program. +Patch by Victor Stinner. |