diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-09-13 21:06:09 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-09-13 21:06:09 +0300 |
commit | 26837fda4813fc4c1c19a7a092738cf2c7184da2 (patch) | |
tree | 5fe89c4822bc943fcc8544a3426c9fc145981059 /run_tests.py | |
parent | 2aed3613902c47df0e8203c7732451f8eb29236c (diff) | |
download | meson-26837fda4813fc4c1c19a7a092738cf2c7184da2.zip meson-26837fda4813fc4c1c19a7a092738cf2c7184da2.tar.gz meson-26837fda4813fc4c1c19a7a092738cf2c7184da2.tar.bz2 |
Added installed_files.txt files to all places that needed them.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py index 475eaae..7ec3bd4 100755 --- a/run_tests.py +++ b/run_tests.py @@ -41,7 +41,6 @@ def validate_install(srcdir, installdir): for fname in files: found_name = os.path.join(root, fname)[len(installdir)+1:] found[found_name] = True - print(found) expected = set(expected) found = set(found) missing = expected - found |