summaryrefslogtreecommitdiff
path: root/chromium/base/process/process_info_unittest.cc
blob: 727c3038ff37e882320c8e03b92374d0ef905dfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/process/process_info.h"

#include "base/time/time.h"
#include "build/build_config.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace base {

// See https://crbug.com/726484 for Fuchsia.
#if !defined(OS_IOS) && !defined(OS_FUCHSIA)
TEST(ProcessInfoTest, CreationTime) {
  Time creation_time = CurrentProcessInfo::CreationTime();
  ASSERT_FALSE(creation_time.is_null());
}
#endif  // !defined(OS_IOS) && !defined(OS_FUCHSIA)

}  // namespace base