From 201089007f0930c49d05d0c875b64fb0edeb4fbf Mon Sep 17 00:00:00 2001 From: Jorge Perez Date: Mon, 6 Jun 2022 17:35:52 -0400 Subject: [PATCH] Disable staging-fuel.ignitionrobotics.org test (#257) Signed-off-by: Jorge Perez --- src/ign_TEST.cc | 6 ++++-- src/ign_src_TEST.cc | 16 ++++++++++++---- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/src/ign_TEST.cc b/src/ign_TEST.cc index e0117600..e74df82e 100644 --- a/src/ign_TEST.cc +++ b/src/ign_TEST.cc @@ -106,8 +106,9 @@ TEST(CmdLine, ///////////////////////////////////////////////// // https://github.com/ignitionrobotics/ign-fuel-tools/issues/113 +// https://github.com/gazebosim/gz-fuel-tools/issues/254 TEST(CmdLine, - IGN_UTILS_TEST_ENABLED_ONLY_ON_LINUX(ModelListCustomServerPretty)) + DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(ModelListCustomServerPretty)) { auto output = custom_exec_str( g_listCmd + " -t model -u https://staging-fuel.ignitionrobotics.org"); @@ -136,8 +137,9 @@ TEST(CmdLine, IGN_UTILS_TEST_ENABLED_ONLY_ON_LINUX(WorldListConfigServerUgly)) ///////////////////////////////////////////////// // https://github.com/ignitionrobotics/ign-fuel-tools/issues/113 +// https://github.com/gazebosim/gz-fuel-tools/issues/254 TEST(CmdLine, - IGN_UTILS_TEST_ENABLED_ONLY_ON_LINUX(WorldListCustomServerPretty)) + DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(WorldListCustomServerPretty)) { auto output = custom_exec_str( g_listCmd + " -t world -u https://staging-fuel.ignitionrobotics.org"); diff --git a/src/ign_src_TEST.cc b/src/ign_src_TEST.cc index a5df1bcb..47c9d5b8 100644 --- a/src/ign_src_TEST.cc +++ b/src/ign_src_TEST.cc @@ -104,7 +104,9 @@ TEST_F(CmdLine, ModelListConfigServerUgly) ///////////////////////////////////////////////// // Protocol "https" not supported or disabled in libcurl for Windows // https://github.com/ignitionrobotics/ign-fuel-tools/issues/105 -TEST_F(CmdLine, ModelListConfigServerPretty) +// https://github.com/gazebosim/gz-fuel-tools/issues/254 +TEST_F(CmdLine, + DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(ModelListConfigServerPretty)) { EXPECT_TRUE(listModels("https://staging-fuel.ignitionrobotics.org")); @@ -126,7 +128,9 @@ TEST_F(CmdLine, ModelListConfigServerPretty) ///////////////////////////////////////////////// // Protocol "https" not supported or disabled in libcurl for Windows // https://github.com/ignitionrobotics/ign-fuel-tools/issues/105 -TEST_F(CmdLine, ModelListConfigServerPrettyOwner) +// https://github.com/gazebosim/gz-fuel-tools/issues/254 +TEST_F(CmdLine, + DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(ModelListConfigServerPrettyOwner)) { EXPECT_TRUE(listModels("https://staging-fuel.ignitionrobotics.org", "openrobotics")); @@ -252,7 +256,9 @@ TEST_F(CmdLine, WorldListFail) ///////////////////////////////////////////////// // Protocol "https" not supported or disabled in libcurl for Windows // https://github.com/ignitionrobotics/ign-fuel-tools/issues/105 -TEST_F(CmdLine, WorldListConfigServerUgly) +// https://github.com/gazebosim/gz-fuel-tools/issues/254 +TEST_F(CmdLine, + DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(WorldListConfigServerUgly)) { EXPECT_TRUE(listWorlds( "https://staging-fuel.ignitionrobotics.org", "", "true")); @@ -267,7 +273,9 @@ TEST_F(CmdLine, WorldListConfigServerUgly) ///////////////////////////////////////////////// // Protocol "https" not supported or disabled in libcurl for Windows // https://github.com/ignitionrobotics/ign-fuel-tools/issues/105 -TEST_F(CmdLine, WorldListConfigServerPretty) +// https://github.com/gazebosim/gz-fuel-tools/issues/254 +TEST_F(CmdLine, + DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(WorldListConfigServerPretty)) { EXPECT_TRUE(listWorlds("https://staging-fuel.ignitionrobotics.org"));