From 6278e3166a1c5e63dd189474be9ad9c99d7efc8a Mon Sep 17 00:00:00 2001 From: Louise Poubel Date: Wed, 5 Aug 2020 16:52:01 -0700 Subject: [PATCH] Disable TopicViewer_TEST on Windows and macOS Signed-off-by: Louise Poubel --- src/plugins/topic_viewer/TopicViewer_TEST.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugins/topic_viewer/TopicViewer_TEST.cc b/src/plugins/topic_viewer/TopicViewer_TEST.cc index 8ad6c9547..3e23b731d 100644 --- a/src/plugins/topic_viewer/TopicViewer_TEST.cc +++ b/src/plugins/topic_viewer/TopicViewer_TEST.cc @@ -37,6 +37,8 @@ using namespace ignition; using namespace gui; using namespace plugins; +// See https://github.com/ignitionrobotics/ign-gui/issues/75 +#if not defined(__APPLE__) && not defined(_WIN32) ///////////////////////////////////////////////// TEST(TopicViewerTest, Load) { @@ -191,3 +193,4 @@ TEST(TopicViewerTest, Model) EXPECT_EQ(root->rowCount(), 2); } +#endif