Commit d94f652d authored by Martin v. Löwis's avatar Martin v. Löwis

Add test case for freeze.

parent 818bc206
......@@ -120,6 +120,8 @@ Documentation
Tests
-----
- Add test case for freeze.
- Issue #20743: Fix a reference leak in test_tcl.
- Issue #21097: Move test_namespace_pkgs into test_importlib.
......
# Makefile to test freeze
# set PYTHON to path of Python interpreter to test
PYTHON=python
# set OUTDIR to the temp directory for freeze
OUTDIR=outdir
test:
$(PYTHON) ../freeze.py -o $(OUTDIR) ok.py
make -C $(OUTDIR)
$(OUTDIR)/ok
import sys
sys.exit(0)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment