From c86929a87d267092b6df722c95dc82d1bc9cb8be Mon Sep 17 00:00:00 2001 From: Florian Albrechtskirchinger Date: Sun, 1 May 2022 15:07:19 +0200 Subject: [PATCH] Disable wstring unit test on ICPC Fixes: error 913: invalid multibyte character sequence --- tests/src/unit-wstring.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/src/unit-wstring.cpp b/tests/src/unit-wstring.cpp index d15ac8491..fa655988c 100644 --- a/tests/src/unit-wstring.cpp +++ b/tests/src/unit-wstring.cpp @@ -32,6 +32,8 @@ SOFTWARE. #include using nlohmann::json; +// ICPC errors out on multibyte character sequences in source files +#ifndef __INTEL_COMPILER namespace { bool wstring_is_utf16(); @@ -115,3 +117,4 @@ TEST_CASE("wide strings") } } } +#endif