summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Musum <musum@yahoo-inc.com>2017-06-14 13:26:33 +0200
committerGitHub <noreply@github.com>2017-06-14 13:26:33 +0200
commit9e6b3f5d678832e382dd8c01972b1af2d541282a (patch)
tree98f4be53d5e139fb721732013758ae5b8019964f
parent6a238d789e5d2cca40464bd5dbebd7be31b19438 (diff)
parentd104fbb9df429c2906a5d1c0b6eec032f7ad3a3c (diff)
Merge pull request #2762 from yahoo/bjorncs/remove-test
Remove unstable test
-rw-r--r--config/src/tests/configparser/configparser.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/config/src/tests/configparser/configparser.cpp b/config/src/tests/configparser/configparser.cpp
index 7a66d831ee5..521df96af3a 100644
--- a/config/src/tests/configparser/configparser.cpp
+++ b/config/src/tests/configparser/configparser.cpp
@@ -108,14 +108,6 @@ TEST("require that escaped values are properly unescaped") {
ASSERT_EQUAL("a\nb\rc\\d\"eBg", value);
}
-IGNORE_TEST("verify that locale affects double parsing") { // Failing on some CentOS based environments
- std::vector<vespalib::string> payload;
- setlocale(LC_NUMERIC, "nb_NO.UTF-8");
- payload.push_back("foo 3.14");
- ASSERT_EXCEPTION(ConfigParser::parse<double>("foo", payload), InvalidConfigException, "Value 3.14 is not a legal double");
- setlocale(LC_NUMERIC, "C");
-}
-
TEST("require that maps can be parsed")
{
writeFile("foo.cfg", "\nfooValue \"a\"\nfooMap{\"foo\"} 1336\nfooMap{\"bar\"} 1337\n");