diff --git a/cpp/test/DataStorm/callbacks/test.py b/cpp/test/DataStorm/callbacks/test.py index 06337f3408c..9a0b80228b6 100644 --- a/cpp/test/DataStorm/callbacks/test.py +++ b/cpp/test/DataStorm/callbacks/test.py @@ -2,7 +2,6 @@ # Copyright (c) ZeroC, Inc. All rights reserved. # -import sys from DataStormUtil import Reader, Writer from Util import ClientServerTestCase, TestSuite @@ -22,14 +21,12 @@ traceProps=traceProps), ] -# TODO - enable once we figure out https://github.com/zeroc-ice/ice/issues/2929 -if sys.platform != "darwin": - test_cases.append( - ClientServerTestCase( - name = "Writer/Reader multicast enabled", - client = Writer(props = multicastProps), - server = Reader(props = multicastProps), - traceProps=traceProps), - ) +test_cases.append( + ClientServerTestCase( + name = "Writer/Reader multicast enabled", + client = Writer(props = multicastProps), + server = Reader(props = multicastProps), + traceProps=traceProps), +) TestSuite(__file__, test_cases) diff --git a/cpp/test/DataStorm/config/test.py b/cpp/test/DataStorm/config/test.py index 40e32c43f54..9a0b80228b6 100644 --- a/cpp/test/DataStorm/config/test.py +++ b/cpp/test/DataStorm/config/test.py @@ -4,7 +4,6 @@ from DataStormUtil import Reader, Writer from Util import ClientServerTestCase, TestSuite -import sys traceProps = { "DataStorm.Trace.Topic" : 1, @@ -22,14 +21,12 @@ traceProps=traceProps), ] -# TODO - enable once we figure out https://github.com/zeroc-ice/ice/issues/2929 -if sys.platform != "darwin": - test_cases.append( - ClientServerTestCase( - name = "Writer/Reader multicast enabled", - client = Writer(props = multicastProps), - server = Reader(props = multicastProps), - traceProps=traceProps), - ) +test_cases.append( + ClientServerTestCase( + name = "Writer/Reader multicast enabled", + client = Writer(props = multicastProps), + server = Reader(props = multicastProps), + traceProps=traceProps), +) TestSuite(__file__, test_cases) diff --git a/cpp/test/DataStorm/events/test.py b/cpp/test/DataStorm/events/test.py index 547816d4a5b..17c8583966d 100644 --- a/cpp/test/DataStorm/events/test.py +++ b/cpp/test/DataStorm/events/test.py @@ -4,7 +4,6 @@ from DataStormUtil import Reader, Writer from Util import ClientServerTestCase, TestSuite -import sys traceProps = { "DataStorm.Trace.Topic" : 1, @@ -24,14 +23,12 @@ traceProps=traceProps), ] -# TODO - enable once we figure out https://github.com/zeroc-ice/ice/issues/2929 -if sys.platform != "darwin": - test_cases.append( - ClientServerTestCase( - name = "Writer/Reader multicast enabled", - client = Writer(props = multicastProps), - server = Reader(props = multicastProps), - traceProps=traceProps), - ) +test_cases.append( + ClientServerTestCase( + name = "Writer/Reader multicast enabled", + client = Writer(props = multicastProps), + server = Reader(props = multicastProps), + traceProps=traceProps), +) TestSuite(__file__, test_cases) diff --git a/cpp/test/DataStorm/partial/test.py b/cpp/test/DataStorm/partial/test.py index 8c75c1826aa..f4bd8927fc0 100644 --- a/cpp/test/DataStorm/partial/test.py +++ b/cpp/test/DataStorm/partial/test.py @@ -4,7 +4,6 @@ from DataStormUtil import Reader, Writer from Util import ClientServerTestCase, TestSuite -import sys traceProps = { "DataStorm.Trace.Topic" : 1, @@ -22,14 +21,12 @@ traceProps=traceProps), ] -# TODO - enable once we figure out https://github.com/zeroc-ice/ice/issues/2929 -if sys.platform != "darwin": - test_cases.append( - ClientServerTestCase( - name = "Writer/Reader multicast enabled", - client = Writer(props = multicastProps), - server = Reader(props = multicastProps), - traceProps=traceProps), - ) +test_cases.append( + ClientServerTestCase( + name = "Writer/Reader multicast enabled", + client = Writer(props = multicastProps), + server = Reader(props = multicastProps), + traceProps=traceProps), +) TestSuite(__file__, test_cases) diff --git a/cpp/test/DataStorm/types/test.py b/cpp/test/DataStorm/types/test.py index 8c75c1826aa..f4bd8927fc0 100644 --- a/cpp/test/DataStorm/types/test.py +++ b/cpp/test/DataStorm/types/test.py @@ -4,7 +4,6 @@ from DataStormUtil import Reader, Writer from Util import ClientServerTestCase, TestSuite -import sys traceProps = { "DataStorm.Trace.Topic" : 1, @@ -22,14 +21,12 @@ traceProps=traceProps), ] -# TODO - enable once we figure out https://github.com/zeroc-ice/ice/issues/2929 -if sys.platform != "darwin": - test_cases.append( - ClientServerTestCase( - name = "Writer/Reader multicast enabled", - client = Writer(props = multicastProps), - server = Reader(props = multicastProps), - traceProps=traceProps), - ) +test_cases.append( + ClientServerTestCase( + name = "Writer/Reader multicast enabled", + client = Writer(props = multicastProps), + server = Reader(props = multicastProps), + traceProps=traceProps), +) TestSuite(__file__, test_cases)