| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // This file contains unit tests for the job object. | 5 // This file contains unit tests for the job object. |
| 6 | 6 |
| 7 #include "base/scoped_ptr.h" | |
| 8 #include "sandbox/src/job.h" | 7 #include "sandbox/src/job.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 10 | 9 |
| 11 namespace sandbox { | 10 namespace sandbox { |
| 12 | 11 |
| 13 // Tests the creation and destruction of the job. | 12 // Tests the creation and destruction of the job. |
| 14 TEST(JobTest, TestCreation) { | 13 TEST(JobTest, TestCreation) { |
| 15 // Scope the creation of Job. | 14 // Scope the creation of Job. |
| 16 { | 15 { |
| 17 // Create the job. | 16 // Create the job. |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 EXPECT_EQ(1, jbpidl.NumberOfAssignedProcesses); | 179 EXPECT_EQ(1, jbpidl.NumberOfAssignedProcesses); |
| 181 EXPECT_EQ(1, jbpidl.NumberOfProcessIdsInList); | 180 EXPECT_EQ(1, jbpidl.NumberOfProcessIdsInList); |
| 182 EXPECT_EQ(pi.dwProcessId, jbpidl.ProcessIdList[0]); | 181 EXPECT_EQ(pi.dwProcessId, jbpidl.ProcessIdList[0]); |
| 183 | 182 |
| 184 EXPECT_TRUE(::TerminateProcess(pi.hProcess, 0)); | 183 EXPECT_TRUE(::TerminateProcess(pi.hProcess, 0)); |
| 185 | 184 |
| 186 EXPECT_TRUE(::CloseHandle(job_handle)); | 185 EXPECT_TRUE(::CloseHandle(job_handle)); |
| 187 } | 186 } |
| 188 | 187 |
| 189 } // namespace sandbox | 188 } // namespace sandbox |
| OLD | NEW |