summaryrefslogtreecommitdiff
path: root/test/Win32/mingw.py
blob: aca8795c7fe6d6ba9e75c796f87bd7f8d9168411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#!/usr/bin/env python
#
# MIT License
#
# Copyright The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

"""
This tests the MinGW C/C++ compiler support.
This test requires MinGW to be installed.
"""

import os
import sys

import TestSCons
import TestCmd

test = TestSCons.TestSCons(match = TestCmd.match_re_dotall)

# MinGW is Windows only:
if sys.platform != 'win32':
    msg = "Skipping mingw test on non-Windows platform '%s'\n" % sys.platform
    test.skip_test(msg)

test.write('SConstruct',"""
import sys
from SCons.Tool.mingw import exists

DefaultEnvironment(tools=[])
env = Environment()
if exists(env):
    print('mingw exists')
sys.exit(0)
""")

test.run()
if 'mingw exists' not in test.stdout():
    test.skip_test("No MinGW on this system, skipping test.\n")

test.subdir('header')

# Do the actual testing:
test.write('SConstruct',"""
DefaultEnvironment(tools=[])
env = Environment(tools=['mingw'])
assert env['CC'] == 'gcc'
env.StaticLibrary('static', 'static.cpp')
env.SharedLibrary('shared', 'shared.cpp')
env.SharedLibrary('cshared', ['cshared.c', 'cshared.def'], WINDOWS_INSERT_DEF=1)
env.Program(
    'test',
    ['test.cpp', env.RES('resource.rc', CPPPATH=['header'])],
    LIBS=['static', 'shared', 'cshared'],
    LIBPATH=['.'],
)
""")

test.write('test.cpp', '''
#include <stdio.h>
#include <windows.h>
#include "resource.h"

void shared_func(void);
void static_func(void);
extern "C" void cshared_func(void);

int main(void)
{
    printf("%s\\n", "test.cpp");
    shared_func();
    static_func();
    cshared_func();

    char test[1024];
    LoadString(GetModuleHandle(NULL), IDS_TEST, test, sizeof(test));
    printf("%d %s\\n", IDS_TEST, test);

    return 0;
}
''')

test.write('resource.rc', '''
#include "resource.h"
#include <resource2.h>

STRINGTABLE DISCARDABLE
BEGIN
    IDS_TEST RESOURCE_RC
END
''')

test.write('resource.h', '''
#define IDS_TEST 2001
''')

test.write('static.cpp', '''
#include <stdio.h>

void static_func(void)
{
    printf("%s\\n", "static.cpp");
}
''')

test.write('shared.cpp', '''
#include <stdio.h>

void shared_func(void)
{
    printf("%s\\n", "shared.cpp");
}
''')

test.write('cshared.c', '''
#include <stdio.h>

void cshared_func(void)
{
    printf("%s\\n", "cshared.c");
}
''')

test.write('cshared.def', '''
EXPORTS
cshared_func
''')



test.write('header/resource2.h', '''
#define RESOURCE_RC "resource.rc"
''')

# the mingw linker likes to print "Creating library file: libfoo.a" to stderr, but
# 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('cshared.def' not in test.stdout())
test.fail_test('-Wl,--output-def,cshared.def' in test.stdout())
# ensure the target def got generated for the shared.dll:
test.fail_test(not os.path.exists(test.workpath('cshared.def')))
test.fail_test(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:
test.write('resource.h', '''
#define IDS_TEST 2002
''')
test.run(arguments='test.exe', stderr='.*')
test.run(program=test.workpath('test.exe'), stdout='test.cpp\nshared.cpp\nstatic.cpp\ncshared.c\n2002 resource.rc\n')

# Test with specifying the default tool to make sure msvc setting doen't ruin it
# for mingw:
test.write('SConstruct',"""
env=Environment(tools=['default', 'mingw'])
assert env['CC'] == 'gcc'
env.SharedLibrary('shared', 'shared.cpp')
env.Program('test', 'test.cpp', LIBS=['static', 'shared', 'cshared'], LIBPATH=['.'])
""")

test.write('test.cpp', '''
#include <stdio.h>

void shared_func(void);

int main(void)
{
    printf("%s\\n", "test.cpp2");
    shared_func();
    return 0;
}
''')

test.write('shared.cpp', '''
#include <stdio.h>

void shared_func(void)
{
    printf("%s\\n", "shared.cpp2");
}
''')

# the mingw linker likes to print "Creating library file: libfoo.a" to stderr, but
# 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='.*')
test.run(program=test.workpath('test.exe'), stdout='test.cpp2\nshared.cpp2\n')

test.pass_test()

# Local Variables:
# tab-width:4
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=4 shiftwidth=4: