Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4b04d357
Commit
4b04d357
authored
Mar 29, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Mar 29, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32/tests: Add explicit ImmLoadIME / ImmFreeLayout calls.
parent
99cbab72
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
23 deletions
+22
-23
imm32.c
dlls/imm32/tests/imm32.c
+22
-23
No files found.
dlls/imm32/tests/imm32.c
View file @
4b04d357
...
...
@@ -2981,7 +2981,7 @@ static HKL ime_install(void)
return
hkl
;
}
static
void
ime_cleanup
(
HKL
hkl
)
static
void
ime_cleanup
(
HKL
hkl
,
BOOL
free
)
{
HMODULE
module
=
GetModuleHandleW
(
L"winetest_ime.dll"
);
WCHAR
buffer
[
MAX_PATH
],
value
[
MAX_PATH
];
...
...
@@ -2992,6 +2992,8 @@ static void ime_cleanup( HKL hkl )
todo_wine
ok
(
ret
,
"UnloadKeyboardLayout failed, error %lu
\n
"
,
GetLastError
()
);
if
(
free
)
ok_ret
(
1
,
ImmFreeLayout
(
hkl
)
);
swprintf
(
buffer
,
ARRAY_SIZE
(
buffer
),
L"System
\\
CurrentControlSet
\\
Control
\\
Keyboard Layouts
\\
%08x"
,
hkl
);
ret
=
RegDeleteKeyW
(
HKEY_LOCAL_MACHINE
,
buffer
);
ok
(
!
ret
,
"RegDeleteKeyW returned %#lx, error %lu
\n
"
,
ret
,
GetLastError
()
);
...
...
@@ -3094,7 +3096,7 @@ static void test_ImmInstallIME(void)
ret
=
ImmFreeLayout
(
hkl
);
ok
(
ret
,
"ImmFreeLayout returned %#x
\n
"
,
ret
);
ime_cleanup
(
hkl
);
ime_cleanup
(
hkl
,
FALSE
);
ime_info
.
fdwProperty
=
0
;
...
...
@@ -3120,7 +3122,7 @@ static void test_ImmInstallIME(void)
ret
=
ImmFreeLayout
(
hkl
);
ok
(
ret
,
"ImmFreeLayout returned %#x
\n
"
,
ret
);
ime_cleanup
(
hkl
);
ime_cleanup
(
hkl
,
FALSE
);
cleanup:
SET_ENABLE
(
IME_DLL_PROCESS_ATTACH
,
FALSE
);
...
...
@@ -3159,7 +3161,7 @@ static void test_ImmIsIME(void)
todo_ImeInquire
=
FALSE
;
todo_ImeDestroy
=
FALSE
;
ime_cleanup
(
hkl
);
ime_cleanup
(
hkl
,
FALSE
);
cleanup:
SET_ENABLE
(
IME_DLL_PROCESS_ATTACH
,
FALSE
);
...
...
@@ -3254,7 +3256,7 @@ static void test_ImmGetProperty(void)
todo_ImeDestroy
=
FALSE
;
called_ImeDestroy
=
FALSE
;
ime_cleanup
(
hkl
);
ime_cleanup
(
hkl
,
FALSE
);
cleanup:
SET_ENABLE
(
ImeInquire
,
FALSE
);
...
...
@@ -3327,7 +3329,7 @@ static void test_ImmGetDescription(void)
ok
(
ret
==
12
,
"ImmGetDescriptionA returned %lu
\n
"
,
ret
);
ok
(
!
strcmp
(
bufferA
,
"WineTest IME"
),
"got bufferA %s
\n
"
,
debugstr_a
(
bufferA
)
);
ime_cleanup
(
hkl
);
ime_cleanup
(
hkl
,
FALSE
);
cleanup:
SET_ENABLE
(
IME_DLL_PROCESS_ATTACH
,
FALSE
);
...
...
@@ -3406,7 +3408,7 @@ static void test_ImmGetIMEFileName(void)
ok
(
ret
==
12
,
"ImmGetIMEFileNameA returned %lu
\n
"
,
ret
);
ok
(
!
strcmp
(
bufferA
,
expectA
),
"got bufferA %s
\n
"
,
debugstr_a
(
bufferA
)
);
ime_cleanup
(
hkl
);
ime_cleanup
(
hkl
,
FALSE
);
cleanup:
SET_ENABLE
(
IME_DLL_PROCESS_ATTACH
,
FALSE
);
...
...
@@ -3514,7 +3516,7 @@ static void test_ImmEscape( BOOL unicode )
winetest_pop_context
();
}
ime_cleanup
(
hkl
);
ime_cleanup
(
hkl
,
FALSE
);
cleanup:
SET_ENABLE
(
ImeEscape
,
FALSE
);
...
...
@@ -3582,7 +3584,7 @@ static void test_ImmEnumRegisterWord( BOOL unicode )
ok_ret
(
0xdeadbeef
,
ImmEnumRegisterWordA
(
hkl
,
enum_register_wordA
,
"Reading"
,
0xdeadbeef
,
"String"
,
NULL
)
);
CHECK_CALLED
(
ImeEnumRegisterWord
);
ime_cleanup
(
hkl
);
ime_cleanup
(
hkl
,
FALSE
);
cleanup:
SET_ENABLE
(
ImeEnumRegisterWord
,
FALSE
);
...
...
@@ -3644,7 +3646,7 @@ static void test_ImmRegisterWord( BOOL unicode )
ok_ret
(
0
,
ImmRegisterWordA
(
hkl
,
NULL
,
0
,
"String"
)
);
CHECK_CALLED
(
ImeRegisterWord
);
ime_cleanup
(
hkl
);
ime_cleanup
(
hkl
,
FALSE
);
cleanup:
SET_ENABLE
(
ImeRegisterWord
,
FALSE
);
...
...
@@ -3721,7 +3723,7 @@ skip_null:
}
CHECK_CALLED
(
ImeGetRegisterWordStyle
);
ime_cleanup
(
hkl
);
ime_cleanup
(
hkl
,
FALSE
);
cleanup:
SET_ENABLE
(
ImeGetRegisterWordStyle
,
FALSE
);
...
...
@@ -3783,7 +3785,7 @@ static void test_ImmUnregisterWord( BOOL unicode )
ok_ret
(
0
,
ImmUnregisterWordA
(
hkl
,
NULL
,
0
,
"String"
)
);
CHECK_CALLED
(
ImeUnregisterWord
);
ime_cleanup
(
hkl
);
ime_cleanup
(
hkl
,
FALSE
);
cleanup:
SET_ENABLE
(
ImeUnregisterWord
,
FALSE
);
...
...
@@ -3852,6 +3854,7 @@ static void test_ImmActivateLayout(void)
ok_ret
(
1
,
ImmActivateLayout
(
hkl
)
);
ok_seq
(
activate_seq
);
CHECK_CALLED
(
ImeInquire
);
ok_ret
(
1
,
ImmLoadIME
(
hkl
)
);
ok_eq
(
hkl
,
GetKeyboardLayout
(
0
),
HKL
,
"%p"
);
...
...
@@ -3865,7 +3868,7 @@ static void test_ImmActivateLayout(void)
ok_eq
(
old_hkl
,
GetKeyboardLayout
(
0
),
HKL
,
"%p"
);
ime_cleanup
(
hkl
);
ime_cleanup
(
hkl
,
FALSE
);
ok_seq
(
empty_sequence
);
...
...
@@ -3892,6 +3895,9 @@ static void test_ImmActivateLayout(void)
todo_wine
CHECK_CALLED
(
ImeInquire
);
ok_seq
(
activate_with_window_seq
);
todo_ImeInquire
=
TRUE
;
ok_ret
(
1
,
ImmLoadIME
(
hkl
)
);
todo_ImeInquire
=
FALSE
;
ok_eq
(
hkl
,
GetKeyboardLayout
(
0
),
HKL
,
"%p"
);
...
...
@@ -3900,15 +3906,8 @@ static void test_ImmActivateLayout(void)
ok_eq
(
old_hkl
,
GetKeyboardLayout
(
0
),
HKL
,
"%p"
);
ime_cleanup
(
hkl
);
ok_seq
(
empty_sequence
);
/* ImmActivateLayout leaks the IME, we need to free it manually */
SET_EXPECT
(
ImeDestroy
);
ret
=
ImmFreeLayout
(
hkl
);
ok
(
ret
,
"ImmFreeLayout returned %u
\n
"
,
ret
);
todo_wine
ime_cleanup
(
hkl
,
TRUE
);
CHECK_CALLED
(
ImeDestroy
);
ok_seq
(
empty_sequence
);
...
...
@@ -4015,6 +4014,7 @@ static void test_ImmCreateInputContext(void)
if
(
!
(
hkl
=
ime_install
()))
goto
cleanup
;
ok_ret
(
1
,
ImmLoadIME
(
hkl
)
);
/* Activating the layout calls ImeSelect 1 on existing HIMC */
...
...
@@ -4063,8 +4063,7 @@ static void test_ImmCreateInputContext(void)
ok_eq
(
old_hkl
,
GetKeyboardLayout
(
0
),
HKL
,
"%p"
);
ok_ret
(
1
,
ImmFreeLayout
(
hkl
)
);
ime_cleanup
(
hkl
);
ime_cleanup
(
hkl
,
TRUE
);
ok_seq
(
empty_sequence
);
cleanup:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment