From 5a93549d3ba154277e00032eb43414ece1f5853f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Backstr=C3=B6m?= Date: Tue, 29 Oct 2024 10:14:43 +0100 Subject: [PATCH] kernel: Fix noshell-raw testcase for \el in to_erl handshake --- lib/kernel/test/interactive_shell_SUITE.erl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/kernel/test/interactive_shell_SUITE.erl b/lib/kernel/test/interactive_shell_SUITE.erl index 7bb085043c1d..63467896cec1 100644 --- a/lib/kernel/test/interactive_shell_SUITE.erl +++ b/lib/kernel/test/interactive_shell_SUITE.erl @@ -2213,7 +2213,8 @@ noshell_raw(Config) -> %% Make sure we are in unicode encoding unicode = proplists:get_value(encoding, io:getopts()), - "\fhello\n" = io:get_line("1> "), + %% "\el" is an artifact from the attaching to_erl program + "\el" ++ "hello\n" = io:get_line("1> "), io:format(TCGl, "TC Line: ~p~n", [?LINE]), ok = shell:start_interactive({noshell, raw}),