Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Unified Diff: util/win/scoped_process_suspend_test.cc

Issue 1337653005: win: Fix use of THREAD_ALL_ACCESS on XP (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: more checks Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | util/win/xp_compat.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/win/scoped_process_suspend_test.cc
diff --git a/util/win/scoped_process_suspend_test.cc b/util/win/scoped_process_suspend_test.cc
index 98f06433b0910a37b0fa3f01bfdf52d18d002a71..f663d38beee8c203e8f9e91369fb05268c392b85 100644
--- a/util/win/scoped_process_suspend_test.cc
+++ b/util/win/scoped_process_suspend_test.cc
@@ -20,7 +20,9 @@
#include <vector>
#include "gtest/gtest.h"
+#include "test/errors.h"
#include "test/win/win_child_process.h"
+#include "util/win/xp_compat.h"
namespace crashpad {
namespace test {
@@ -33,23 +35,33 @@ bool SuspendCountMatches(HANDLE process, DWORD desired_suspend_count) {
DWORD process_id = GetProcessId(process);
ScopedKernelHANDLE snapshot(CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, 0));
- if (!snapshot.is_valid())
+ if (!snapshot.is_valid()) {
+ ADD_FAILURE() << ErrorMessage("CreateToolhelp32Snapshot");
return false;
+ }
THREADENTRY32 te;
te.dwSize = sizeof(te);
- if (!Thread32First(snapshot.get(), &te))
+
+ BOOL ret = Thread32First(snapshot.get(), &te);
+ if (!ret) {
+ ADD_FAILURE() << ErrorMessage("Thread32First");
return false;
+ }
do {
if (te.dwSize >= offsetof(THREADENTRY32, th32OwnerProcessID) +
sizeof(te.th32OwnerProcessID) &&
te.th32OwnerProcessID == process_id) {
ScopedKernelHANDLE thread(
- OpenThread(THREAD_ALL_ACCESS, false, te.th32ThreadID));
+ OpenThread(kXPThreadAllAccess, false, te.th32ThreadID));
+ EXPECT_TRUE(thread.is_valid()) << ErrorMessage("OpenThread");
DWORD result = SuspendThread(thread.get());
- EXPECT_NE(result, static_cast<DWORD>(-1));
- if (result != static_cast<DWORD>(-1))
- ResumeThread(thread.get());
+ EXPECT_NE(result, static_cast<DWORD>(-1))
+ << ErrorMessage("SuspendThread");
+ if (result != static_cast<DWORD>(-1)) {
+ EXPECT_NE(ResumeThread(thread.get()), static_cast<DWORD>(-1))
+ << ErrorMessage("ResumeThread");
+ }
if (result != desired_suspend_count)
return false;
}
« no previous file with comments | « no previous file | util/win/xp_compat.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698