diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-06-21 04:36:30 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-21 04:36:30 -0400 |
| commit | 2d659b649bf43963791cc6e9896da6ef46370743 (patch) | |
| tree | 333ef612d1677be434a06a40a1fb74a12d8d482f /run_project_tests.py | |
| parent | f171faee32b877aec064a1bc4ab91adda632299d (diff) | |
| parent | 733aee123d79e9540395150fb5aecc43dd46068b (diff) | |
| download | meson-2d659b649bf43963791cc6e9896da6ef46370743.tar.gz | |
Merge pull request #1924 from mesonbuild/tingping/yelp-fixes
Various yelp fixes
Diffstat (limited to 'run_project_tests.py')
| -rwxr-xr-x | run_project_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 66d7eb073..3c89d7517 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -214,7 +214,8 @@ def validate_install(srcdir, installdir, compiler): expected[platform_fix_name(line.strip())] = False # Check if expected files were found for fname in expected: - if os.path.exists(os.path.join(installdir, fname)): + file_path = os.path.join(installdir, fname) + if os.path.exists(file_path) or os.path.islink(file_path): expected[fname] = True for (fname, found) in expected.items(): if not found: |
