diff options
author | Steven Knight <knight@baldmt.com> | 2003-01-15 01:28:31 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-01-15 01:28:31 (GMT) |
commit | 64d27f9efc30088f70214b4585b83707c56f6c0a (patch) | |
tree | 032614050226717b9da589a3a669562488fcace5 /test/mingw.py | |
parent | 6bc341a516112626e301004808205731f4bc4c9e (diff) | |
download | SCons-64d27f9efc30088f70214b4585b83707c56f6c0a.zip SCons-64d27f9efc30088f70214b4585b83707c56f6c0a.tar.gz SCons-64d27f9efc30088f70214b4585b83707c56f6c0a.tar.bz2 |
Add .def file support to the mingw tool. (Anthony Roach)
Diffstat (limited to 'test/mingw.py')
-rw-r--r-- | test/mingw.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/test/mingw.py b/test/mingw.py index 5d6e2c1..1ea4704 100644 --- a/test/mingw.py +++ b/test/mingw.py @@ -64,7 +64,7 @@ env=Environment(tools=['mingw']) assert env['CC'] == 'gcc' env.StaticLibrary('static', 'static.cpp') env.SharedLibrary('shared', 'shared.cpp') -env.SharedLibrary('cshared', 'cshared.c') +env.SharedLibrary('cshared', ['cshared.c', 'cshared.def']) env.Program('test', ['test.cpp', env.RES('resource.rc', CPPPATH=['header'])], LIBS=['static', 'shared', 'cshared'], LIBPATH=['.']) """) @@ -133,6 +133,13 @@ void cshared_func(void) } ''') +test.write('cshared.def', ''' +EXPORTS +cshared_func +''') + + + test.write('header/resource2.h', ''' #define RESOURCE_RC "resource.rc" ''') @@ -141,6 +148,11 @@ test.write('header/resource2.h', ''' # we'd like for this test to pass once this bug is fixed, so match anything at all # that comes out of stderr: test.run(arguments='test.exe', stderr='.*') +# ensure the source def for cshared.def got used, and there wasn't a target def for chshared.dll: +test.fail_test(string.find(test.stdout(), 'cshared.def') == -1) +test.fail_test(string.find(test.stdout(), '-Wl,--output-def,cshared.def') != -1) +# ensure the target def got generated for the shared.dll: +test.fail_test(not os.path.exists(test.workpath('shared.def'))) test.run(program=test.workpath('test.exe'), stdout='test.cpp\nshared.cpp\nstatic.cpp\ncshared.c\n2001 resource.rc\n') # ensure that modifying the header causes the resource to be rebuilt: |