Commit 129149d2 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

kernel32/tests: Allow ENABLE_VIRTUAL_TERMINAL_PROCESSING in default mode.

parent 5d96c5aa
......@@ -3972,6 +3972,7 @@ static void test_pseudo_console_child(HANDLE input, HANDLE output)
ret = GetConsoleMode(output, &mode);
ok(ret, "GetConsoleMode failed: %u\n", GetLastError());
mode &= ~ENABLE_VIRTUAL_TERMINAL_PROCESSING;
ok(mode == (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT), "mode = %x\n", mode);
ret = SetConsoleMode(output, mode & ~ENABLE_WRAP_AT_EOL_OUTPUT);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment