From 46e5b36b2a2fd70fef26ee0ad7e08a3c7c2fd7fd Mon Sep 17 00:00:00 2001 From: Siri Hansen Date: Fri, 25 Aug 2017 16:50:07 +0200 Subject: ct: use 'unicode' option for regexps --- lib/common_test/src/ct.erl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/common_test/src/ct.erl') diff --git a/lib/common_test/src/ct.erl b/lib/common_test/src/ct.erl index 19b0ee20fe..a12c0c9101 100644 --- a/lib/common_test/src/ct.erl +++ b/lib/common_test/src/ct.erl @@ -848,7 +848,8 @@ capture_get([ExclCat | ExclCategories]) -> Strs = test_server:capture_get(), CatsStr = [atom_to_list(ExclCat) | [[$| | atom_to_list(EC)] || EC <- ExclCategories]], - {ok,MP} = re:compile("
.*"), + {ok,MP} = re:compile("
.*", + [unicode]), lists:flatmap(fun(Str) -> case re:run(Str, MP) of {match,_} -> []; -- cgit v1.2.3