Skip to content
Snippets Groups Projects
Commit d6df8f56 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Don't make the test key volatile, that can break other tests.

parent ed04d36b
No related branches found
No related tags found
No related merge requests found
......@@ -56,8 +56,7 @@ static void setup_main_key(void)
{
if (RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\Test", &hkey_main )) delete_key( hkey_main );
assert (!RegCreateKeyExA( HKEY_CURRENT_USER, "Software\\Wine\\Test", 0, NULL,
REG_OPTION_VOLATILE, KEY_ALL_ACCESS, NULL, &hkey_main, NULL ));
assert (!RegCreateKeyA( HKEY_CURRENT_USER, "Software\\Wine\\Test", &hkey_main ));
}
static void create_test_entries(void)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment