diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-12-30 14:08:18 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-12-30 14:08:18 (GMT) |
commit | 5c9e55e8137233dd2c34c63d3562a7841d1fcf72 (patch) | |
tree | a36e93c19246bcd71957572110f752b92a2743a3 /Tools | |
parent | 658b50f579d78f078ca66c41038bc9a927840ec0 (diff) | |
download | cpython-5c9e55e8137233dd2c34c63d3562a7841d1fcf72.zip cpython-5c9e55e8137233dd2c34c63d3562a7841d1fcf72.tar.gz cpython-5c9e55e8137233dd2c34c63d3562a7841d1fcf72.tar.bz2 |
Add more test directories to testsuite. Will backport to 2.4.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 455625e..dbb7ecb 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -882,7 +882,11 @@ def add_files(db): if not have_tcl: continue tcltk.set_current() - elif dir in ['test', 'output']: + elif dir in ['test', 'tests', 'data', 'output']: + # test: Lib, Lib/email, Lib/bsddb + # tests: Lib/distutils + # data: Lib/email/test + # output: Lib/test testsuite.set_current() else: default_feature.set_current() |