1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 20:55:19 +03:00
aports/main/scons/broken-tests.patch
2022-08-01 06:52:59 +02:00

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)