aboutsummaryrefslogtreecommitdiffstats
path: root/lib/parsetools/test
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2016-09-28 10:01:17 +0200
committerHans Bolinder <[email protected]>2016-09-28 10:12:51 +0200
commitf738330c5588f5e2ad7e3661c675bbffb4795850 (patch)
treede655ec0bf0ff30847c2821bd3922313a6983eae /lib/parsetools/test
parentee80c779c3ae7900e183c98f2568d386e03e3b66 (diff)
downloadotp-f738330c5588f5e2ad7e3661c675bbffb4795850.tar.gz
otp-f738330c5588f5e2ad7e3661c675bbffb4795850.tar.bz2
otp-f738330c5588f5e2ad7e3661c675bbffb4795850.zip
parsetools: Correct handling of Unicode in Leex
The 'dfa_graph' option did not work with Unicode. The testcase 'unicode' was not correct.
Diffstat (limited to 'lib/parsetools/test')
-rw-r--r--lib/parsetools/test/leex_SUITE.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/parsetools/test/leex_SUITE.erl b/lib/parsetools/test/leex_SUITE.erl
index 949ef3c36e..84f9c996ac 100644
--- a/lib/parsetools/test/leex_SUITE.erl
+++ b/lib/parsetools/test/leex_SUITE.erl
@@ -408,12 +408,12 @@ unicode(Config) when is_list(Config) ->
Ts = [{unicode_1,
<<"%% -*- coding: utf-8 -*-\n"
"Definitions.\n"
- "RTLarrow = (←)\n"
+ "RTLarrow = (←)\n"
"Rules.\n"
- "{RTLarrow} : {token,{'<-',TokenLine}}.\n"
+ "{RTLarrow} : {token,{\"←\",TokenLine}}.\n"
"Erlang code.\n"
"-export([t/0]).\n"
- "t() -> {ok, [{'<-', 1}], 1} = string(\"←\"), ok.">>,
+ "t() -> {ok, [{\"←\", 1}], 1} = string(\"←\"), ok.">>,
default,
ok}],
@@ -1137,7 +1137,7 @@ run_test(Config, Def, Pre) ->
XrlFile = filename:join(DataDir, DefFile),
ErlFile = filename:join(DataDir, Filename),
Opts = [return, warn_unused_vars,{outdir,DataDir}],
- ok = file:write_file(XrlFile, Def, [{encoding, unicode}]),
+ ok = file:write_file(XrlFile, Def),
LOpts = [return, {report, false} |
case Pre of
default ->