diff --git a/tests/src/Base/SchemaTests.cpp b/tests/src/Base/SchemaTests.cpp index e6ca6f5fca..0b170fa9be 100644 --- a/tests/src/Base/SchemaTests.cpp +++ b/tests/src/Base/SchemaTests.cpp @@ -315,18 +315,16 @@ TEST_F(SchemaTest, imperial_building_special_function_length_foot) EXPECT_EQ(result, expect); } -/* - * QuantityParser::yyparse() is crashing on the >>1' 2" + 1/4"<< input, - * so disable this test TEST_F(SchemaTest, imperial_building_special_function_length) { + GTEST_SKIP() << "QuantityParser::yyparse() is crashing on the >>1' 2\" + 1/4\"<< input, " + "so disable this test"; constexpr auto val {360.6}; const auto result = set("ImperialBuilding", Unit::Length, val); const auto expect = Tools::escapeQuotesFromString("1' 2\" + 1/4\""); EXPECT_EQ(result, expect); } -*/ TEST_F(SchemaTest, imperial_building_special_function_length_neg) {