Fix test runner on Windows.

pull/15/head
Jussi Pakkanen 11 years ago
parent 26583435d5
commit 889e4b03c0
  1. 4
      run_tests.py

@ -51,14 +51,14 @@ def validate_install(srcdir, installdir):
if platform.system() == 'Windows':
# Don't really know how Windows installs should work
# so skip.
return
return ''
info_file = os.path.join(srcdir, 'installed_files.txt')
expected = {}
found = {}
if os.path.exists(info_file):
for line in open(info_file):
expected[platform_fix_filename(line.strip())] = True
for root, dirs, files in os.walk(installdir):
for root, _, files in os.walk(installdir):
for fname in files:
found_name = os.path.join(root, fname)[len(installdir)+1:]
found[found_name] = True

Loading…
Cancel
Save