diff --git a/sycl/test-e2e/Config/allowlist.cpp b/sycl/test-e2e/Config/allowlist.cpp index 1e02c27464fee..07bb8fac5e511 100644 --- a/sycl/test-e2e/Config/allowlist.cpp +++ b/sycl/test-e2e/Config/allowlist.cpp @@ -24,7 +24,8 @@ static void replaceSpecialCharacters(std::string &Str) { std::replace_if( Str.begin(), Str.end(), [](const char Sym) { - return '(' == Sym || ')' == Sym || '[' == Sym || ']' == Sym; + return '(' == Sym || ')' == Sym || '[' == Sym || ']' == Sym || + '+' == Sym; }, '.'); }