diff options
author | Georg Brandl <georg@python.org> | 2010-08-01 09:17:53 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-08-01 09:17:53 (GMT) |
commit | 8708e385979ca6978da681ff6a27888facc41ba4 (patch) | |
tree | cf94887ebddf194e8bc0e42dd59598301b163eb1 /Tools | |
parent | b16e38b8254e0e1bbffaf16971351a5eb31a5846 (diff) | |
download | cpython-8708e385979ca6978da681ff6a27888facc41ba4.zip cpython-8708e385979ca6978da681ff6a27888facc41ba4.tar.gz cpython-8708e385979ca6978da681ff6a27888facc41ba4.tar.bz2 |
Package some new files that are needed for running the test suite from the MSI package.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index abb156d..93c18b4 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1009,6 +1009,8 @@ def add_files(db): lib.add_file("185test.db") lib.add_file("audiotest.au") lib.add_file("cfgparser.1") + lib.add_file("cfgparser.2") + lib.add_file("cfgparser.3") lib.add_file("sgml_input.html") lib.add_file("testtar.tar") lib.add_file("test_difflib_expect.html") @@ -1019,6 +1021,8 @@ def add_files(db): lib.glob("*.pem") lib.glob("*.pck") lib.add_file("zipdir.zip") + if dir=='tests' and parent.physical=='distutils': + lib.add_file("Setup.sample") if dir=='decimaltestdata': lib.glob("*.decTest") if dir=='xmltestdata': |