Skip to content

Commit

Permalink
regedit/tests: Delete the export file before returning from compare_e…
Browse files Browse the repository at this point in the history
…xport().

Signed-off-by: Hugh McMaster <[email protected]>
Signed-off-by: Alexandre Julliard <[email protected]>
  • Loading branch information
hughmcmaster authored and julliard committed Oct 13, 2017
1 parent 1baa026 commit a5de10a
Showing 1 changed file with 3 additions and 16 deletions.
19 changes: 3 additions & 16 deletions programs/regedit/tests/regedit.c
Original file line number Diff line number Diff line change
Expand Up @@ -3393,7 +3393,9 @@ static BOOL compare_export_(unsigned line, const char *filename, const char *exp

todo_wine_if (todo & TODO_REG_COMPARE)
lok(!lstrcmpW(fbuf, wstr), "export data does not match expected data\n");
ret = TRUE;

ret = DeleteFileA(filename);
lok(ret, "DeleteFile failed: %u\n", GetLastError());

exit:
HeapFree(GetProcessHeap(), 0, fbuf);
Expand Down Expand Up @@ -3468,9 +3470,6 @@ static void test_export(void)
run_regedit_exe("regedit.exe /e file.reg HKEY_CURRENT_USER\\" KEY_BASE);
ok(compare_export("file.reg", empty_key_test, 0), "compare_export() failed\n");

lr = DeleteFileA("file.reg");
ok(lr, "DeleteFile failed: %u\n", GetLastError());

/* Test registry export with a simple data structure */
dword = 0x100;
add_value(hkey, "DWORD", REG_DWORD, &dword, sizeof(dword));
Expand All @@ -3479,9 +3478,6 @@ static void test_export(void)
run_regedit_exe("regedit.exe /e file.reg HKEY_CURRENT_USER\\" KEY_BASE);
ok(compare_export("file.reg", simple_test, 0), "compare_export() failed\n");

lr = DeleteFileA("file.reg");
ok(lr, "DeleteFile failed: %u\n", GetLastError());

/* Test registry export with a complex data structure */
add_key(hkey, "Subkey1", &subkey);
add_value(subkey, "Binary", REG_BINARY, "\x11\x22\x33\x44", 4);
Expand Down Expand Up @@ -3519,9 +3515,6 @@ static void test_export(void)
run_regedit_exe("regedit.exe /e file.reg HKEY_CURRENT_USER\\" KEY_BASE);
ok(compare_export("file.reg", complex_test, 0), "compare_export() failed\n");

lr = DeleteFileA("file.reg");
ok(lr, "DeleteFile failed: %u\n", GetLastError());

lr = delete_tree(HKEY_CURRENT_USER, KEY_BASE);
ok(lr == ERROR_SUCCESS, "delete_tree() failed: %d\n", lr);

Expand All @@ -3535,9 +3528,6 @@ static void test_export(void)
run_regedit_exe("regedit.exe /e file.reg HKEY_CURRENT_USER\\" KEY_BASE);
ok(compare_export("file.reg", key_order_test, 0), "compare_export() failed\n");

lr = DeleteFileA("file.reg");
ok(lr, "DeleteFile failed: %u\n", GetLastError());

delete_key(hkey, "Subkey1");
delete_key(hkey, "Subkey2");

Expand All @@ -3552,9 +3542,6 @@ static void test_export(void)
run_regedit_exe("regedit.exe /e file.reg HKEY_CURRENT_USER\\" KEY_BASE);
ok(compare_export("file.reg", value_order_test, TODO_REG_COMPARE), "compare_export() failed\n");

lr = DeleteFileA("file.reg");
ok(lr, "DeleteFile failed: %u\n", GetLastError());

delete_key(HKEY_CURRENT_USER, KEY_BASE);
}

Expand Down

0 comments on commit a5de10a

Please sign in to comment.