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
5448bf3e
Commit
5448bf3e
authored
Sep 28, 2009
by
Ge van Geldorp
Committed by
Alexandre Julliard
Sep 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi/tests: Add acceptable error code for Win7.
parent
1d0365da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
misc.c
dlls/setupapi/tests/misc.c
+2
-2
No files found.
dlls/setupapi/tests/misc.c
View file @
5448bf3e
...
@@ -198,13 +198,13 @@ static void test_SetupCopyOEMInf(void)
...
@@ -198,13 +198,13 @@ static void test_SetupCopyOEMInf(void)
SetLastError
(
0xdeadbeef
);
SetLastError
(
0xdeadbeef
);
res
=
pSetupCopyOEMInfA
(
tmpfile
,
NULL
,
0
,
SP_COPY_NOOVERWRITE
,
NULL
,
0
,
NULL
,
NULL
);
res
=
pSetupCopyOEMInfA
(
tmpfile
,
NULL
,
0
,
SP_COPY_NOOVERWRITE
,
NULL
,
0
,
NULL
,
NULL
);
ok
(
res
==
FALSE
,
"Expected FALSE, got %d
\n
"
,
res
);
ok
(
res
==
FALSE
,
"Expected FALSE, got %d
\n
"
,
res
);
if
(
GetLastError
()
==
ERROR_WRONG_INF_TYPE
)
if
(
GetLastError
()
==
ERROR_WRONG_INF_TYPE
||
GetLastError
()
==
ERROR_UNSUPPORTED_TYPE
/* Win7 */
)
{
{
/* FIXME:
/* FIXME:
* Vista needs a [Manufacturer] entry in the inf file. Doing this will give some
* Vista needs a [Manufacturer] entry in the inf file. Doing this will give some
* popups during the installation though as it also needs a catalog file (signed?).
* popups during the installation though as it also needs a catalog file (signed?).
*/
*/
win_skip
(
"Needs a different inf file on Vista
/W2K8
\n
"
);
win_skip
(
"Needs a different inf file on Vista
+
\n
"
);
DeleteFile
(
tmpfile
);
DeleteFile
(
tmpfile
);
return
;
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