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
03bf3cac
Commit
03bf3cac
authored
Oct 16, 2015
by
André Hentschel
Committed by
Alexandre Julliard
Oct 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32/tests: Disable test which crashes on Win10.
Signed-off-by:
André Hentschel
<
nerv@dawncrow.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a7545791
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
printdlg.c
dlls/comdlg32/tests/printdlg.c
+10
-8
No files found.
dlls/comdlg32/tests/printdlg.c
View file @
03bf3cac
...
...
@@ -379,14 +379,16 @@ static void test_PrintDlgExW(void)
return
;
}
/* Set CommDlgExtendedError != 0 */
PrintDlgA
(
NULL
);
SetLastError
(
0xdeadbeef
);
res
=
pPrintDlgExW
(
NULL
);
ok
(
(
res
==
E_INVALIDARG
),
"got 0x%x with %u and %u (expected 'E_INVALIDARG')
\n
"
,
res
,
GetLastError
(),
CommDlgExtendedError
());
if
(
0
)
/* Crashes on Win10 */
{
/* Set CommDlgExtendedError != 0 */
PrintDlgA
(
NULL
);
SetLastError
(
0xdeadbeef
);
res
=
pPrintDlgExW
(
NULL
);
ok
(
(
res
==
E_INVALIDARG
),
"got 0x%x with %u and %u (expected 'E_INVALIDARG')
\n
"
,
res
,
GetLastError
(),
CommDlgExtendedError
()
);
}
pDlg
=
HeapAlloc
(
GetProcessHeap
(),
0
,
(
sizeof
(
PRINTDLGEXW
))
+
8
);
if
(
!
pDlg
)
return
;
...
...
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