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

Side by Side Diff: base/process_util_unittest.cc

Issue 1315009: Make DidProcessCrash a bit more solid and accurate on Windows (Closed)
Patch Set: now with a test Created 10 years, 9 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 unified diff | Download patch
« no previous file with comments | « base/process_util.h ('k') | base/process_util_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #define _CRT_SECURE_NO_WARNINGS 5 #define _CRT_SECURE_NO_WARNINGS
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/eintr_wrapper.h" 10 #include "base/eintr_wrapper.h"
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 TEST_F(ProcessUtilTest, KillSlowChild) { 71 TEST_F(ProcessUtilTest, KillSlowChild) {
72 remove("SlowChildProcess.die"); 72 remove("SlowChildProcess.die");
73 ProcessHandle handle = this->SpawnChild(L"SlowChildProcess"); 73 ProcessHandle handle = this->SpawnChild(L"SlowChildProcess");
74 ASSERT_NE(base::kNullProcessHandle, handle); 74 ASSERT_NE(base::kNullProcessHandle, handle);
75 FILE *fp = fopen("SlowChildProcess.die", "w"); 75 FILE *fp = fopen("SlowChildProcess.die", "w");
76 fclose(fp); 76 fclose(fp);
77 EXPECT_TRUE(base::WaitForSingleProcess(handle, 5000)); 77 EXPECT_TRUE(base::WaitForSingleProcess(handle, 5000));
78 base::CloseProcessHandle(handle); 78 base::CloseProcessHandle(handle);
79 } 79 }
80 80
81 TEST_F(ProcessUtilTest, DidProcessCrash) {
82 remove("SlowChildProcess.die");
83 ProcessHandle handle = this->SpawnChild(L"SlowChildProcess");
84 ASSERT_NE(base::kNullProcessHandle, handle);
85
86 bool child_exited = true;
87 EXPECT_FALSE(base::DidProcessCrash(&child_exited, handle));
88 EXPECT_FALSE(child_exited);
89
90 FILE *fp = fopen("SlowChildProcess.die", "w");
91 fclose(fp);
92 EXPECT_TRUE(base::WaitForSingleProcess(handle, 5000));
93
94 EXPECT_FALSE(base::DidProcessCrash(&child_exited, handle));
95
96 base::CloseProcessHandle(handle);
97 }
98
81 // Ensure that the priority of a process is restored correctly after 99 // Ensure that the priority of a process is restored correctly after
82 // backgrounding and restoring. 100 // backgrounding and restoring.
83 // Note: a platform may not be willing or able to lower the priority of 101 // Note: a platform may not be willing or able to lower the priority of
84 // a process. The calls to SetProcessBackground should be noops then. 102 // a process. The calls to SetProcessBackground should be noops then.
85 TEST_F(ProcessUtilTest, SetProcessBackgrounded) { 103 TEST_F(ProcessUtilTest, SetProcessBackgrounded) {
86 ProcessHandle handle = this->SpawnChild(L"SimpleChildProcess"); 104 ProcessHandle handle = this->SpawnChild(L"SimpleChildProcess");
87 Process process(handle); 105 Process process(handle);
88 int old_priority = process.GetPriority(); 106 int old_priority = process.GetPriority();
89 process.SetProcessBackgrounded(true); 107 process.SetProcessBackgrounded(true);
90 process.SetProcessBackgrounded(false); 108 process.SetProcessBackgrounded(false);
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 TEST_F(OutOfMemoryTest, PsychoticallyBigObjCObject) { 638 TEST_F(OutOfMemoryTest, PsychoticallyBigObjCObject) {
621 ASSERT_DEATH(while ((value_ = 639 ASSERT_DEATH(while ((value_ =
622 AllocatePsychoticallyBigObjCObject())) {}, ""); 640 AllocatePsychoticallyBigObjCObject())) {}, "");
623 } 641 }
624 642
625 #endif // OS_MACOSX 643 #endif // OS_MACOSX
626 644
627 #endif // !defined(OS_WIN) 645 #endif // !defined(OS_WIN)
628 646
629 } // namespace base 647 } // namespace base
OLDNEW
« no previous file with comments | « base/process_util.h ('k') | base/process_util_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698