diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-13 17:54:54 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-13 17:54:54 +0000 |
commit | 6eb908a96e0a7270add635aed8de5ba93d3b0ff3 (patch) | |
tree | e0a1a6a69ebed299c020a6b5008232bc8caed394 /mojo/public/tests | |
parent | 06863b392d7cf2165ac9cd5b1bb8a4df8d55dc97 (diff) | |
download | chromium_src-6eb908a96e0a7270add635aed8de5ba93d3b0ff3.zip chromium_src-6eb908a96e0a7270add635aed8de5ba93d3b0ff3.tar.gz chromium_src-6eb908a96e0a7270add635aed8de5ba93d3b0ff3.tar.bz2 |
Mojo: Rename public/tests/test_support.* -> test_utils.*.
I'm planning on reusing the name test_support for something slightly
different: a dynamic library that can thunk to an implementation
provided by the test runner (much like we do for system and gles2). This
is so we can remove public/tests's base dependency (by injecting it
instead).
R=sky@chromium.org
Review URL: https://codereview.chromium.org/132353006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251077 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/public/tests')
-rw-r--r-- | mojo/public/tests/system/core_perftest.cc | 2 | ||||
-rw-r--r-- | mojo/public/tests/test_utils.cc (renamed from mojo/public/tests/test_support.cc) | 2 | ||||
-rw-r--r-- | mojo/public/tests/test_utils.h (renamed from mojo/public/tests/test_support.h) | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/mojo/public/tests/system/core_perftest.cc b/mojo/public/tests/system/core_perftest.cc index 318b708..bfb8ff3 100644 --- a/mojo/public/tests/system/core_perftest.cc +++ b/mojo/public/tests/system/core_perftest.cc @@ -9,7 +9,7 @@ #include <assert.h> #include "mojo/public/system/macros.h" -#include "mojo/public/tests/test_support.h" +#include "mojo/public/tests/test_utils.h" #include "testing/gtest/include/gtest/gtest.h" namespace { diff --git a/mojo/public/tests/test_support.cc b/mojo/public/tests/test_utils.cc index c9cb169..7562e9e 100644 --- a/mojo/public/tests/test_support.cc +++ b/mojo/public/tests/test_utils.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "mojo/public/tests/test_support.h" +#include "mojo/public/tests/test_utils.h" #include "base/test/perf_log.h" #include "mojo/public/system/core_cpp.h" diff --git a/mojo/public/tests/test_support.h b/mojo/public/tests/test_utils.h index 0cc98c4..a8c9d16 100644 --- a/mojo/public/tests/test_support.h +++ b/mojo/public/tests/test_utils.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef MOJO_PUBLIC_TESTS_TEST_SUPPORT_H_ -#define MOJO_PUBLIC_TESTS_TEST_SUPPORT_H_ +#ifndef MOJO_PUBLIC_TESTS_TEST_UTILS_H_ +#define MOJO_PUBLIC_TESTS_TEST_UTILS_H_ #include <string> @@ -36,4 +36,4 @@ void IterateAndReportPerf(const char* test_name, } // namespace test } // namespace mojo -#endif // MOJO_PUBLIC_TESTS_TEST_SUPPORT_H_ +#endif // MOJO_PUBLIC_TESTS_TEST_UTILS_H_ |