diff options
author | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-17 00:30:32 +0000 |
---|---|---|
committer | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-17 00:30:32 +0000 |
commit | f791d5dc5945d2410264922389399b9300d7f256 (patch) | |
tree | fd4390cd5f72141811893bf9a9e69a3e39c1d21b /base/allocator | |
parent | f79c5917f8dd23a6d05c19f57537d5eb0ca58ba2 (diff) | |
download | chromium_src-f791d5dc5945d2410264922389399b9300d7f256.zip chromium_src-f791d5dc5945d2410264922389399b9300d7f256.tar.gz chromium_src-f791d5dc5945d2410264922389399b9300d7f256.tar.bz2 |
Normalize _unittest.cc filename suffix for unittests
This allows tools that use filename heuristics to detect tests
(like scythe)
BUG=335193
Review URL: https://codereview.chromium.org/138433004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245392 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/allocator')
-rw-r--r-- | base/allocator/allocator.gyp | 6 | ||||
-rw-r--r-- | base/allocator/allocator_unittest.cc (renamed from base/allocator/allocator_unittests.cc) | 2 | ||||
-rw-r--r-- | base/allocator/type_profiler_map_unittest.cc (renamed from base/allocator/type_profiler_map_unittests.cc) | 2 | ||||
-rw-r--r-- | base/allocator/type_profiler_unittest.cc (renamed from base/allocator/type_profiler_unittests.cc) | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/base/allocator/allocator.gyp b/base/allocator/allocator.gyp index 4841f58..05c5701 100644 --- a/base/allocator/allocator.gyp +++ b/base/allocator/allocator.gyp @@ -513,7 +513,7 @@ '../..', ], 'sources': [ - 'allocator_unittests.cc', + 'allocator_unittest.cc', '../profiler/alternate_timer.cc', '../profiler/alternate_timer.h', ], @@ -616,7 +616,7 @@ 'sources': [ 'type_profiler_control.cc', 'type_profiler_control.h', - 'type_profiler_unittests.cc', + 'type_profiler_unittest.cc', ], }, { @@ -638,7 +638,7 @@ '../..', ], 'sources': [ - 'type_profiler_map_unittests.cc', + 'type_profiler_map_unittest.cc', '<(tcmalloc_dir)/src/gperftools/type_profiler_map.h', '<(tcmalloc_dir)/src/type_profiler_map.cc', ], diff --git a/base/allocator/allocator_unittests.cc b/base/allocator/allocator_unittest.cc index cf8b74d..4265251 100644 --- a/base/allocator/allocator_unittests.cc +++ b/base/allocator/allocator_unittest.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Copyright 2014 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. diff --git a/base/allocator/type_profiler_map_unittests.cc b/base/allocator/type_profiler_map_unittest.cc index 5ac5dd0..514ec16 100644 --- a/base/allocator/type_profiler_map_unittests.cc +++ b/base/allocator/type_profiler_map_unittest.cc @@ -1,4 +1,4 @@ -// Copyright 2012 The Chromium Authors. All rights reserved. +// Copyright 2014 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. diff --git a/base/allocator/type_profiler_unittests.cc b/base/allocator/type_profiler_unittest.cc index e8f06ed..3d7369c38 100644 --- a/base/allocator/type_profiler_unittests.cc +++ b/base/allocator/type_profiler_unittest.cc @@ -1,4 +1,4 @@ -// Copyright 2012 The Chromium Authors. All rights reserved. +// Copyright 2014 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. |