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

Side by Side Diff: util/posix/process_util_test.cc

Issue 727973002: Move some parts of ProcessReader (in snapshot) to ProcessInfo (in util) (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Address review feedback Created 6 years, 1 month 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 | « util/posix/process_util_mac.cc ('k') | util/util.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Crashpad Authors. All rights reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #include "util/posix/process_util.h"
16
17 #include <crt_externs.h>
18 #include <unistd.h>
19
20 #include <string>
21 #include <vector>
22
23 #include "base/basictypes.h"
24 #include "gtest/gtest.h"
25
26 namespace crashpad {
27 namespace test {
28 namespace {
29
30 TEST(ProcessUtil, ProcessArgumentsForPID) {
31 std::vector<std::string> argv;
32 ASSERT_TRUE(ProcessArgumentsForPID(getpid(), &argv));
33
34 // gtest argv processing scrambles argv, but it leaves argc and argv[0]
35 // intact, so test those.
36
37 int argc = implicit_cast<int>(argv.size());
38 int expect_argc = *_NSGetArgc();
39 EXPECT_EQ(expect_argc, argc);
40
41 ASSERT_GE(expect_argc, 1);
42 ASSERT_GE(argc, 1);
43
44 char** expect_argv = *_NSGetArgv();
45 EXPECT_EQ(std::string(expect_argv[0]), argv[0]);
46 }
47
48 } // namespace
49 } // namespace test
50 } // namespace crashpad
OLDNEW
« no previous file with comments | « util/posix/process_util_mac.cc ('k') | util/util.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698