aboutsummaryrefslogtreecommitdiffstats
path: root/erts/test
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2017-10-20 15:03:05 +0200
committerDan Gudmundsson <[email protected]>2017-10-20 15:11:44 +0200
commitcdb1ca9e12901b95aadffff08124976ce9a27033 (patch)
tree026b48c9ace710f6c788e08660e189a270e4cc72 /erts/test
parent62db6a63625ef67d7474da1efc8d4f65bfd8c251 (diff)
downloadotp-cdb1ca9e12901b95aadffff08124976ce9a27033.tar.gz
otp-cdb1ca9e12901b95aadffff08124976ce9a27033.tar.bz2
otp-cdb1ca9e12901b95aadffff08124976ce9a27033.zip
Fix lexemes conversion
Diffstat (limited to 'erts/test')
-rw-r--r--erts/test/erlexec_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/test/erlexec_SUITE.erl b/erts/test/erlexec_SUITE.erl
index db993abe52..73ed0ac56a 100644
--- a/erts/test/erlexec_SUITE.erl
+++ b/erts/test/erlexec_SUITE.erl
@@ -400,7 +400,7 @@ emu_args(CmdLineArgs) ->
{ok,[[Erl]]} = init:get_argument(progname),
EmuCL = os:cmd(Erl ++ " -emu_args_exit " ++ CmdLineArgs),
io:format("EmuCL = ~ts", [EmuCL]),
- split_emu_clt(string:lexemes(EmuCL, [$ ,$\t,$\n,$\r])).
+ split_emu_clt(string:lexemes(EmuCL, [$ ,$\t,$\n,[$\r,$\n]])).
split_emu_clt(EmuCLT) ->
split_emu_clt(EmuCLT, [], [], [], emu).