diff options
author | David Rothenberger <daveroth@acm.org> | 2013-08-18 03:52:11 (GMT) |
---|---|---|
committer | David Rothenberger <daveroth@acm.org> | 2013-08-18 03:52:11 (GMT) |
commit | 09172cd7b265174703131c9945fc18315cc1bc82 (patch) | |
tree | e9150de05051a4f4490efa227c836e278fc545ac /test/LINK | |
parent | f837e2e6511cc8049e5a765c9af25afc9fd730fe (diff) | |
download | SCons-09172cd7b265174703131c9945fc18315cc1bc82.zip SCons-09172cd7b265174703131c9945fc18315cc1bc82.tar.gz SCons-09172cd7b265174703131c9945fc18315cc1bc82.tar.bz2 |
Fix VersionedLib test
Adjust for Cygwin coding conventions and test for existence of the
import libraries.
Diffstat (limited to 'test/LINK')
-rw-r--r-- | test/LINK/VersionedLib.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/LINK/VersionedLib.py b/test/LINK/VersionedLib.py index 0d45789..3c92252 100644 --- a/test/LINK/VersionedLib.py +++ b/test/LINK/VersionedLib.py @@ -98,6 +98,18 @@ elif platform == 'darwin': 'libtest.dylib',
'libtest.2.5.4.dylib',
]
+elif platform == 'cygwin':
+ # All (?) the files we expect will get created in the current directory
+ files = [
+ 'cygtest-2-5-4.dll',
+ 'libtest-2-5-4.dll.a',
+ 'test.os',
+ ]
+ # All (?) the files we expect will get created in the 'installtest' directory
+ instfiles = [
+ 'cygtest-2-5-4.dll',
+ 'libtest-2-5-4.dll.a',
+ ]
elif platform == 'win32':
# All (?) the files we expect will get created in the current directory
files = [
|