diff options
Diffstat (limited to 'testsuite/tests/lib/win32/all.T')
-rw-r--r-- | testsuite/tests/lib/win32/all.T | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/tests/lib/win32/all.T b/testsuite/tests/lib/win32/all.T new file mode 100644 index 0000000000..1e9378a5e6 --- /dev/null +++ b/testsuite/tests/lib/win32/all.T @@ -0,0 +1,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']) |