aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-06-21 04:36:30 -0400
committerGitHub <noreply@github.com>2017-06-21 04:36:30 -0400
commit2d659b649bf43963791cc6e9896da6ef46370743 (patch)
tree333ef612d1677be434a06a40a1fb74a12d8d482f /run_project_tests.py
parentf171faee32b877aec064a1bc4ab91adda632299d (diff)
parent733aee123d79e9540395150fb5aecc43dd46068b (diff)
downloadmeson-2d659b649bf43963791cc6e9896da6ef46370743.zip
meson-2d659b649bf43963791cc6e9896da6ef46370743.tar.gz
meson-2d659b649bf43963791cc6e9896da6ef46370743.tar.bz2
Merge pull request #1924 from mesonbuild/tingping/yelp-fixes
Various yelp fixes
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 66d7eb0..3c89d75 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: