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
9a7d510c
Commit
9a7d510c
authored
Aug 23, 2013
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Aug 26, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32/tests: Limit the number of copies to avoid a test hang.
parent
72b78e7a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
printdlg.c
dlls/comdlg32/tests/printdlg.c
+5
-3
No files found.
dlls/comdlg32/tests/printdlg.c
View file @
9a7d510c
...
...
@@ -128,7 +128,9 @@ static UINT_PTR CALLBACK print_hook_proc(HWND hdlg, UINT msg, WPARAM wp, LPARAM
{
if
(
msg
==
WM_INITDIALOG
)
{
SetDlgItemInt
(
hdlg
,
edt3
,
1234
,
FALSE
);
/* some driver popup a dialog and hung the test or silently limit the number of copies,
when trying to set more than 999 copies */
SetDlgItemInt
(
hdlg
,
edt3
,
123
,
FALSE
);
PostMessage
(
hdlg
,
WM_COMMAND
,
IDOK
,
FALSE
);
}
return
0
;
...
...
@@ -252,7 +254,7 @@ static void test_PrintDlgA(void)
/* Version of Microsoft XPS Document Writer driver shipped before Win7
* reports that it can print multiple copies, but returns 1.
*/
ok
(
pDlg
->
nCopies
==
123
4
||
broken
(
pDlg
->
nCopies
==
1
),
"expected nCopies 1234
, got %d
\n
"
,
pDlg
->
nCopies
);
ok
(
pDlg
->
nCopies
==
123
||
broken
(
pDlg
->
nCopies
==
1
),
"expected nCopies 123
, got %d
\n
"
,
pDlg
->
nCopies
);
ok
(
pDlg
->
hDevMode
!=
0
,
"hDevMode should not be 0
\n
"
);
dm
=
GlobalLock
(
pDlg
->
hDevMode
);
ok
(
S1
(
U1
(
*
dm
)).
dmCopies
==
1
,
"expected dm->dmCopies 1, got %d
\n
"
,
S1
(
U1
(
*
dm
)).
dmCopies
);
...
...
@@ -269,7 +271,7 @@ static void test_PrintDlgA(void)
ok
(
pDlg
->
nCopies
==
1
,
"expected nCopies 1, got %d
\n
"
,
pDlg
->
nCopies
);
ok
(
pDlg
->
hDevMode
!=
0
,
"hDevMode should not be 0
\n
"
);
dm
=
GlobalLock
(
pDlg
->
hDevMode
);
ok
(
S1
(
U1
(
*
dm
)).
dmCopies
==
123
4
,
"expected dm->dmCopies 1234
, got %d
\n
"
,
S1
(
U1
(
*
dm
)).
dmCopies
);
ok
(
S1
(
U1
(
*
dm
)).
dmCopies
==
123
,
"expected dm->dmCopies 123
, got %d
\n
"
,
S1
(
U1
(
*
dm
)).
dmCopies
);
GlobalUnlock
(
pDlg
->
hDevMode
);
GlobalFree
(
pDlg
->
hDevMode
);
GlobalFree
(
pDlg
->
hDevNames
);
...
...
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