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
9f859b45
Commit
9f859b45
authored
Apr 18, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Apr 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Remove a test that fails on some systems.
parent
3a4f271a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
crypt.c
dlls/advapi32/tests/crypt.c
+2
-7
No files found.
dlls/advapi32/tests/crypt.c
View file @
9f859b45
...
...
@@ -873,7 +873,7 @@ static void test_set_provider_ex(void)
static
void
test_machine_guid
(
void
)
{
char
originalGuid
[
40
]
,
guid
[
40
]
;
char
originalGuid
[
40
];
LONG
r
;
HKEY
key
;
DWORD
size
;
...
...
@@ -904,12 +904,7 @@ static void test_machine_guid(void)
ret
=
pCryptAcquireContextA
(
&
hCryptProv
,
szKeySet
,
NULL
,
PROV_RSA_FULL
,
0
);
ok
(
ret
,
"CryptAcquireContextA failed: %08x
\n
"
,
GetLastError
());
CryptReleaseContext
(
hCryptProv
,
0
);
/* Check that MachineGuid was created */
size
=
sizeof
(
guid
);
r
=
RegQueryValueExA
(
key
,
"MachineGuid"
,
NULL
,
NULL
,
(
BYTE
*
)
guid
,
&
size
);
ok
(
!
r
,
"expected to find MachineGuid: %d
\n
"
,
r
);
r
=
RegDeleteValueA
(
key
,
"MachineGuid"
);
ok
(
!
r
,
"RegDeleteValueA failed: %d
\n
"
,
r
);
if
(
restoreGuid
)
RegSetValueExA
(
key
,
"MachineGuid"
,
0
,
REG_SZ
,
(
const
BYTE
*
)
originalGuid
,
strlen
(
originalGuid
)
+
1
);
...
...
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