mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 20:55:19 +03:00
12 lines
505 B
Diff
12 lines
505 B
Diff
diff --git a/testing/framework/TestSConsMSVS.py b/testing/framework/TestSConsMSVS.py
|
|
--- a/testing/framework/TestSConsMSVS.py
|
|
+++ b/testing/framework/TestSConsMSVS.py
|
|
@@ -661,2 +661,8 @@
|
|
class TestSConsMSVS(TestSCons):
|
|
"""Subclass for testing MSVS-specific portions of SCons."""
|
|
+
|
|
+ def __init__(self):
|
|
+ super().__init__()
|
|
+ if sys.platform != 'win32':
|
|
+ msg = "Skipping Visual Studio test on non-Windows platform '%s'\n" % sys.platform
|
|
+ self.skip_test(msg)
|