summaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-08-20 18:05:09 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2021-08-21 22:33:47 +0300
commit267d5385d441f48ea369b6d3927deab8a0066286 (patch)
treec2a07e3530ecd3112e485592035d5171c7bdc8b6 /test cases
parent12e7b3afcf0b7772c929b75abd7c80f0454e2c48 (diff)
downloadmeson-267d5385d441f48ea369b6d3927deab8a0066286.tar.gz
Path special casing for the Xcode backend.
Diffstat (limited to 'test cases')
-rw-r--r--test cases/common/22 object extraction/check-obj.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/22 object extraction/check-obj.py b/test cases/common/22 object extraction/check-obj.py
index 99c2cc546..d2df930b9 100644
--- a/test cases/common/22 object extraction/check-obj.py
+++ b/test cases/common/22 object extraction/check-obj.py
@@ -15,7 +15,7 @@ if sys.argv[1] == 'ninja':
for obj in sys.argv[2:]:
if not os.path.exists(obj):
- sys.exit(1)
+ sys.exit(f'File {obj} not found.')
if sys.argv[1] == 'ninja' and obj not in output:
sys.exit(1)
print('Verified', obj)