summaryrefslogtreecommitdiffstats
path: root/test/LINK/applelink.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/LINK/applelink.py')
-rw-r--r--test/LINK/applelink.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/LINK/applelink.py b/test/LINK/applelink.py
index d43e332..906c929 100644
--- a/test/LINK/applelink.py
+++ b/test/LINK/applelink.py
@@ -122,7 +122,7 @@ for SHLIBVERSION, \
else:
# Should contain -Wl,-current_version,{APPLELINK_CURRENT_VERSION}
test.must_contain_all_lines(test.stdout(),
- ['-Wl,-current_version,{APPLELINK_CURRENT_VERSION}'.format(**locals())])
+ ['-Wl,-current_version,{APPLELINK_CURRENT_VERSION}'.format(**locals()), 'libfoo.4.dynlib'])
if APPLELINK_NO_COMPATIBILITY_VERSION:
# Should not contain -Wl,-compatibility_version
@@ -131,7 +131,7 @@ for SHLIBVERSION, \
else:
# Should contain -Wl,-compatibility_version,{APPLELINK_COMPATIBILITY_VERSION}
test.must_contain_all_lines(test.stdout(),
- ['-Wl,-compatibility_version,{APPLELINK_COMPATIBILITY_VERSION}'.format(**locals())])
+ ['-Wl,-compatibility_version,{APPLELINK_COMPATIBILITY_VERSION}'.format(**locals()), 'libfoo.4.dynlib'])
if not extra_flags:
# Now run otool -L to get the compat and current version info and verify it's correct in the library.