aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/re_SUITE.erl
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2017-03-27 15:36:36 +0200
committerRickard Green <[email protected]>2017-04-05 14:36:43 +0200
commit63782b585b5cfc27cf418deb5fbc5e2c75f5cb44 (patch)
tree084c3a6d81605970e670b5379a3d93203b392201 /lib/stdlib/test/re_SUITE.erl
parentecaf4af3464290b985168f999f6443c18a303218 (diff)
downloadotp-63782b585b5cfc27cf418deb5fbc5e2c75f5cb44.tar.gz
otp-63782b585b5cfc27cf418deb5fbc5e2c75f5cb44.tar.bz2
otp-63782b585b5cfc27cf418deb5fbc5e2c75f5cb44.zip
Fix re_SUITE:pcre_compile_workspace_overflow/1
Diffstat (limited to 'lib/stdlib/test/re_SUITE.erl')
-rw-r--r--lib/stdlib/test/re_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/test/re_SUITE.erl b/lib/stdlib/test/re_SUITE.erl
index 52d3a9f797..464027bade 100644
--- a/lib/stdlib/test/re_SUITE.erl
+++ b/lib/stdlib/test/re_SUITE.erl
@@ -612,7 +612,7 @@ pcre_cve_2008_2371(Config) when is_list(Config) ->
%% http://vcs.pcre.org/viewvc/code/trunk/pcre_compile.c?r1=504&r2=505&view=patch
pcre_compile_workspace_overflow(Config) when is_list(Config) ->
N = 819,
- {error,{"internal error: overran compiling workspace",799}} =
+ {error,{"regular expression is too complicated",799}} =
re:compile([lists:duplicate(N, $(), lists:duplicate(N, $))]),
ok.