blob: 1e9378a5e65a29c4ac7dcaefe1ca0439c494064b (
plain)
1
2
3
4
5
6
7
8
9
10
|
def win_only(opts):
if config.platform != "i386-unknown-mingw32" and \
config.platform != "i386-unknown-cygwin32":
opts.skip = 1
# This isn't a very good test to run automatically at the moment, since
# it doesn't terminate
test('win32001', skip, compile_and_run, ['-package lang -package win32'])
test('win32002', win_only, compile_and_run, ['-package Win32'])
|