Rename README->README.md

This commit is contained in:
Billy Donahue 2015-08-22 15:59:01 -04:00
parent 849f281395
commit a47310a1c1

View File

@ -1,7 +1,7 @@
Google C++ Testing Framework Google C++ Testing Framework
============================ ============================
http://code.google.com/p/googletest/ https://github.com/google/googletest
Overview Overview
-------- --------
@ -28,13 +28,14 @@ effort to support other platforms (e.g. Solaris, AIX, and z/OS).
However, since core members of the Google Test project have no access However, since core members of the Google Test project have no access
to these platforms, Google Test may have outstanding issues there. If to these platforms, Google Test may have outstanding issues there. If
you notice any problems on your platform, please notify you notice any problems on your platform, please notify
googletestframework@googlegroups.com. Patches for fixing them are <googletestframework@googlegroups.com>. Patches for fixing them are
even more welcome! even more welcome!
### Linux Requirements ### ### Linux Requirements ###
These are the base requirements to build and use Google Test from a source These are the base requirements to build and use Google Test from a source
package (as described below): package (as described below):
* GNU-compatible Make or gmake * GNU-compatible Make or gmake
* POSIX-standard shell * POSIX-standard shell
* POSIX(-2) Regular Expressions (regex.h) * POSIX(-2) Regular Expressions (regex.h)
@ -53,55 +54,44 @@ package (as described below):
* Mac OS X 10.4 Tiger or newer * Mac OS X 10.4 Tiger or newer
* Developer Tools Installed * Developer Tools Installed
Also, you'll need CMake 2.6.4 or higher if you want to build the Also, you'll need [CMake](http://www.cmake.org/ CMake) 2.6.4 or higher if
samples using the provided CMake script, regardless of the platform. you want to build the samples using the provided CMake script, regardless
of the platform.
Requirements for Contributors Requirements for Contributors
----------------------------- -----------------------------
We welcome patches. If you plan to contribute a patch, you need to We welcome patches. If you plan to contribute a patch, you need to
build Google Test and its own tests from an SVN checkout (described build Google Test and its own tests from a git checkout (described
below), which has further requirements: below), which has further requirements:
* Python version 2.3 or newer (for running some of the tests and * [Python](http://python.org/) version 2.3 or newer (for running some of the tests and
re-generating certain source files from templates) re-generating certain source files from templates)
* CMake 2.6.4 or newer * [CMake](http://www.cmake.org/) 2.6.4 or newer
Getting the Source Getting the Source
------------------ ------------------
There are two primary ways of getting Google Test's source code: you Google Test's source is available from its GitHub repository at
can download a stable source release in your preferred archive format, <https://github.com/google/googletest>.
or directly check out the source from our Subversion (SVN) repository. The GitHub repository offers stable tagged releases available as .ZIP archives.
The SVN checkout requires a few extra steps and some extra software A Git checkout requires a few extra steps and some extra software
packages on your system, but lets you track the latest development and packages on your system, but lets you track the latest development and
make patches much more easily, so we highly encourage it. make patches much more easily, so we highly encourage it.
### Source Package ### ### Source Package ###
Google Test is released in versioned source packages which can be Snapshots of Google Test's master branch can be
downloaded from the download page [1]. Several different archive [https://github.com/google/googletest/archive/master.zip](downloaded directly).
formats are provided, but the only difference is the tools used to
manipulate them, and the size of the resulting file. Download
whichever you are most comfortable with.
[1] http://code.google.com/p/googletest/downloads/list Versioned releases are also available by clicking on
[https://github.com/google/googletest/releases](Releases) in the project page.
Once the package is downloaded, expand it using whichever tools you ### Git Checkout ###
prefer for that type. This will result in a new directory with the
name "gtest-X.Y.Z" which contains all of the source code. Here are
some examples on Linux:
tar -xvzf gtest-X.Y.Z.tar.gz To check out the master branch of Google Test, run the following git command:
tar -xvjf gtest-X.Y.Z.tar.bz2
unzip gtest-X.Y.Z.zip
### SVN Checkout ### git clone https://github.com/google/googletest.git (via HTTPS)
To check out the main branch (also known as the "trunk") of Google
Test, run the following Subversion command:
svn checkout http://googletest.googlecode.com/svn/trunk/ gtest-svn
Setting up the Build Setting up the Build
-------------------- --------------------
@ -113,28 +103,28 @@ straightforward.
### Generic Build Instructions ### ### Generic Build Instructions ###
Suppose you put Google Test in directory ${GTEST_DIR}. To build it, Suppose you put Google Test in directory `${GTEST_DIR}`. To build it,
create a library build target (or a project as called by Visual Studio create a library build target (or a project as called by Visual Studio
and Xcode) to compile and Xcode) to compile
${GTEST_DIR}/src/gtest-all.cc ${GTEST_DIR}/src/gtest-all.cc
with ${GTEST_DIR}/include in the system header search path and ${GTEST_DIR} with `${GTEST_DIR}/include` in the system header search path and `${GTEST_DIR}`
in the normal header search path. Assuming a Linux-like system and gcc, in the normal header search path. Assuming a Linux-like system and gcc,
something like the following will do: something like the following will do:
g++ -isystem ${GTEST_DIR}/include -I${GTEST_DIR} \ g++ -isystem ${GTEST_DIR}/include -I${GTEST_DIR} \
-pthread -c ${GTEST_DIR}/src/gtest-all.cc -pthread -c ${GTEST_DIR}/src/gtest-all.cc
ar -rv libgtest.a gtest-all.o ar -rv libgtest.a gtest-all.o
(We need -pthread as Google Test uses threads.) (We need `-pthread` as Google Test uses threads.)
Next, you should compile your test source file with Next, you should compile your test source file with
${GTEST_DIR}/include in the system header search path, and link it `${GTEST_DIR}/include` in the system header search path, and link it
with gtest and any other necessary libraries: with gtest and any other necessary libraries:
g++ -isystem ${GTEST_DIR}/include -pthread path/to/your_test.cc libgtest.a \ g++ -isystem ${GTEST_DIR}/include -pthread path/to/your_test.cc libgtest.a \
-o your_test -o your_test
As an example, the make/ directory contains a Makefile that you can As an example, the make/ directory contains a Makefile that you can
use to build Google Test on systems where GNU make is available use to build Google Test on systems where GNU make is available
@ -146,42 +136,42 @@ script.
If the default settings are correct for your environment, the If the default settings are correct for your environment, the
following commands should succeed: following commands should succeed:
cd ${GTEST_DIR}/make cd ${GTEST_DIR}/make
make make
./sample1_unittest ./sample1_unittest
If you see errors, try to tweak the contents of make/Makefile to make If you see errors, try to tweak the contents of `make/Makefile` to make
them go away. There are instructions in make/Makefile on how to do them go away. There are instructions in `make/Makefile` on how to do
it. it.
### Using CMake ### ### Using CMake ###
Google Test comes with a CMake build script (CMakeLists.txt) that can Google Test comes with a CMake build script (
be used on a wide range of platforms ("C" stands for cross-platform.). [CMakeLists.txt](https://github.com/google/googletest/blob/master/CMakeLists.txt)) that can be used on a wide range of platforms ("C" stands for
If you don't have CMake installed already, you can download it for cross-platform.). If you don't have CMake installed already, you can
free from http://www.cmake.org/. download it for free from <http://www.cmake.org/>.
CMake works by generating native makefiles or build projects that can CMake works by generating native makefiles or build projects that can
be used in the compiler environment of your choice. The typical be used in the compiler environment of your choice. The typical
workflow starts with: workflow starts with:
mkdir mybuild # Create a directory to hold the build output. mkdir mybuild # Create a directory to hold the build output.
cd mybuild cd mybuild
cmake ${GTEST_DIR} # Generate native build scripts. cmake ${GTEST_DIR} # Generate native build scripts.
If you want to build Google Test's samples, you should replace the If you want to build Google Test's samples, you should replace the
last command with last command with
cmake -Dgtest_build_samples=ON ${GTEST_DIR} cmake -Dgtest_build_samples=ON ${GTEST_DIR}
If you are on a *nix system, you should now see a Makefile in the If you are on a \*nix system, you should now see a Makefile in the
current directory. Just type 'make' to build gtest. current directory. Just type 'make' to build gtest.
If you use Windows and have Visual Studio installed, a gtest.sln file If you use Windows and have Visual Studio installed, a `gtest.sln` file
and several .vcproj files will be created. You can then build them and several `.vcproj` files will be created. You can then build them
using Visual Studio. using Visual Studio.
On Mac OS X with Xcode installed, a .xcodeproj file will be generated. On Mac OS X with Xcode installed, a `.xcodeproj` file will be generated.
### Legacy Build Scripts ### ### Legacy Build Scripts ###
@ -195,7 +185,7 @@ with your existing build system.
If you still need to use the legacy build scripts, here's how: If you still need to use the legacy build scripts, here's how:
The msvc\ folder contains two solutions with Visual C++ projects. The msvc\ folder contains two solutions with Visual C++ projects.
Open the gtest.sln or gtest-md.sln file using Visual Studio, and you Open the `gtest.sln` or `gtest-md.sln` file using Visual Studio, and you
are ready to build Google Test the same way you build any Visual are ready to build Google Test the same way you build any Visual
Studio project. Files that have names ending with -md use DLL Studio project. Files that have names ending with -md use DLL
versions of Microsoft runtime libraries (the /MD or the /MDd compiler versions of Microsoft runtime libraries (the /MD or the /MDd compiler
@ -205,13 +195,13 @@ the same option to compile both gtest and the test code. If you use
Visual Studio 2005 or above, we recommend the -md version as /MD is Visual Studio 2005 or above, we recommend the -md version as /MD is
the default for new projects in these versions of Visual Studio. the default for new projects in these versions of Visual Studio.
On Mac OS X, open the gtest.xcodeproj in the xcode/ folder using On Mac OS X, open the `gtest.xcodeproj` in the `xcode/` folder using
Xcode. Build the "gtest" target. The universal binary framework will Xcode. Build the "gtest" target. The universal binary framework will
end up in your selected build directory (selected in the Xcode end up in your selected build directory (selected in the Xcode
"Preferences..." -> "Building" pane and defaults to xcode/build). "Preferences..." -> "Building" pane and defaults to xcode/build).
Alternatively, at the command line, enter: Alternatively, at the command line, enter:
xcodebuild xcodebuild
This will build the "Release" configuration of gtest.framework in your This will build the "Release" configuration of gtest.framework in your
default build location. See the "xcodebuild" man page for more default build location. See the "xcodebuild" man page for more
@ -220,8 +210,9 @@ different locations.
If you wish to use the Google Test Xcode project with Xcode 4.x and If you wish to use the Google Test Xcode project with Xcode 4.x and
above, you need to either: above, you need to either:
* update the SDK configuration options in xcode/Config/General.xconfig. * update the SDK configuration options in xcode/Config/General.xconfig.
Comment options SDKROOT, MACOS_DEPLOYMENT_TARGET, and GCC_VERSION. If Comment options `SDKROOT`, `MACOS_DEPLOYMENT_TARGET`, and `GCC_VERSION`. If
you choose this route you lose the ability to target earlier versions you choose this route you lose the ability to target earlier versions
of MacOS X. of MacOS X.
* Install an SDK for an earlier version. This doesn't appear to be * Install an SDK for an earlier version. This doesn't appear to be
@ -235,11 +226,11 @@ Google Test can be used in diverse environments. The default
configuration may not work (or may not work well) out of the box in configuration may not work (or may not work well) out of the box in
some environments. However, you can easily tweak Google Test by some environments. However, you can easily tweak Google Test by
defining control macros on the compiler command line. Generally, defining control macros on the compiler command line. Generally,
these macros are named like GTEST_XYZ and you define them to either 1 these macros are named like `GTEST_XYZ` and you define them to either 1
or 0 to enable or disable a certain feature. or 0 to enable or disable a certain feature.
We list the most frequently used macros below. For a complete list, We list the most frequently used macros below. For a complete list,
see file include/gtest/internal/gtest-port.h. see file [include/gtest/internal/gtest-port.h](https://github.com/google/googletest/blob/master/include/gtest/internal/gtest-port.h).
### Choosing a TR1 Tuple Library ### ### Choosing a TR1 Tuple Library ###
@ -255,36 +246,36 @@ tell Google Test to use the same TR1 tuple library the rest of your
project uses, or the two tuple implementations will clash. To do project uses, or the two tuple implementations will clash. To do
that, add that, add
-DGTEST_USE_OWN_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=0
to the compiler flags while compiling Google Test and your tests. If to the compiler flags while compiling Google Test and your tests. If
you want to force Google Test to use its own tuple library, just add you want to force Google Test to use its own tuple library, just add
-DGTEST_USE_OWN_TR1_TUPLE=1 -DGTEST_USE_OWN_TR1_TUPLE=1
to the compiler flags instead. to the compiler flags instead.
If you don't want Google Test to use tuple at all, add If you don't want Google Test to use tuple at all, add
-DGTEST_HAS_TR1_TUPLE=0 -DGTEST_HAS_TR1_TUPLE=0
and all features using tuple will be disabled. and all features using tuple will be disabled.
### Multi-threaded Tests ### ### Multi-threaded Tests ###
Google Test is thread-safe where the pthread library is available. Google Test is thread-safe where the pthread library is available.
After #include "gtest/gtest.h", you can check the GTEST_IS_THREADSAFE After `#include "gtest/gtest.h"`, you can check the `GTEST_IS_THREADSAFE`
macro to see whether this is the case (yes if the macro is #defined to macro to see whether this is the case (yes if the macro is `#defined` to
1, no if it's undefined.). 1, no if it's undefined.).
If Google Test doesn't correctly detect whether pthread is available If Google Test doesn't correctly detect whether pthread is available
in your environment, you can force it with in your environment, you can force it with
-DGTEST_HAS_PTHREAD=1 -DGTEST_HAS_PTHREAD=1
or or
-DGTEST_HAS_PTHREAD=0 -DGTEST_HAS_PTHREAD=0
When Google Test uses pthread, you may need to add flags to your When Google Test uses pthread, you may need to add flags to your
compiler and/or linker to select the pthread library, or you'll get compiler and/or linker to select the pthread library, or you'll get
@ -301,7 +292,7 @@ as a shared library (known as a DLL on Windows) if you prefer.
To compile *gtest* as a shared library, add To compile *gtest* as a shared library, add
-DGTEST_CREATE_SHARED_LIBRARY=1 -DGTEST_CREATE_SHARED_LIBRARY=1
to the compiler flags. You'll also need to tell the linker to produce to the compiler flags. You'll also need to tell the linker to produce
a shared library instead - consult your linker's manual for how to do a shared library instead - consult your linker's manual for how to do
@ -309,14 +300,14 @@ it.
To compile your *tests* that use the gtest shared library, add To compile your *tests* that use the gtest shared library, add
-DGTEST_LINKED_AS_SHARED_LIBRARY=1 -DGTEST_LINKED_AS_SHARED_LIBRARY=1
to the compiler flags. to the compiler flags.
Note: while the above steps aren't technically necessary today when Note: while the above steps aren't technically necessary today when
using some compilers (e.g. GCC), they may become necessary in the using some compilers (e.g. GCC), they may become necessary in the
future, if we decide to improve the speed of loading the library (see future, if we decide to improve the speed of loading the library (see
http://gcc.gnu.org/wiki/Visibility for details). Therefore you are <http://gcc.gnu.org/wiki/Visibility> for details). Therefore you are
recommended to always add the above flags when using Google Test as a recommended to always add the above flags when using Google Test as a
shared library. Otherwise a future release of Google Test may break shared library. Otherwise a future release of Google Test may break
your build script. your build script.
@ -332,17 +323,18 @@ conflict.
Specifically, if both Google Test and some other code define macro Specifically, if both Google Test and some other code define macro
FOO, you can add FOO, you can add
-DGTEST_DONT_DEFINE_FOO=1 -DGTEST_DONT_DEFINE_FOO=1
to the compiler flags to tell Google Test to change the macro's name to the compiler flags to tell Google Test to change the macro's name
from FOO to GTEST_FOO. Currently FOO can be FAIL, SUCCEED, or TEST. from `FOO` to `GTEST_FOO`. Currently `FOO` can be `FAIL`, `SUCCEED`,
For example, with -DGTEST_DONT_DEFINE_TEST=1, you'll need to write or `TEST`. For example, with `-DGTEST_DONT_DEFINE_TEST=1`, you'll
need to write
GTEST_TEST(SomeTest, DoesThis) { ... } GTEST_TEST(SomeTest, DoesThis) { ... }
instead of instead of
TEST(SomeTest, DoesThis) { ... } TEST(SomeTest, DoesThis) { ... }
in order to define a test. in order to define a test.
@ -388,22 +380,22 @@ To make sure your changes work as intended and don't break existing
functionality, you'll want to compile and run Google Test's own tests. functionality, you'll want to compile and run Google Test's own tests.
For that you can use CMake: For that you can use CMake:
mkdir mybuild mkdir mybuild
cd mybuild cd mybuild
cmake -Dgtest_build_tests=ON ${GTEST_DIR} cmake -Dgtest_build_tests=ON ${GTEST_DIR}
Make sure you have Python installed, as some of Google Test's tests Make sure you have Python installed, as some of Google Test's tests
are written in Python. If the cmake command complains about not being are written in Python. If the cmake command complains about not being
able to find Python ("Could NOT find PythonInterp (missing: able to find Python (`Could NOT find PythonInterp (missing:
PYTHON_EXECUTABLE)"), try telling it explicitly where your Python PYTHON_EXECUTABLE)`), try telling it explicitly where your Python
executable can be found: executable can be found:
cmake -DPYTHON_EXECUTABLE=path/to/python -Dgtest_build_tests=ON ${GTEST_DIR} cmake -DPYTHON_EXECUTABLE=path/to/python -Dgtest_build_tests=ON ${GTEST_DIR}
Next, you can build Google Test and all of its own tests. On *nix, Next, you can build Google Test and all of its own tests. On \*nix,
this is usually done by 'make'. To run the tests, do this is usually done by 'make'. To run the tests, do
make test make test
All tests should pass. All tests should pass.
@ -419,17 +411,17 @@ Normally you don't need to worry about regenerating the source files,
unless you need to modify them. In that case, you should modify the unless you need to modify them. In that case, you should modify the
corresponding .pump files instead and run the pump.py Python script to corresponding .pump files instead and run the pump.py Python script to
regenerate them. You can find pump.py in the scripts/ directory. regenerate them. You can find pump.py in the scripts/ directory.
Read the Pump manual [2] for how to use it. Read the [Pump manual](http://code.google.com/p/googletest/wiki/PumpManual)
for how to use it.
[2] http://code.google.com/p/googletest/wiki/PumpManual
### Contributing a Patch ### ### Contributing a Patch ###
We welcome patches. Please read the Google Test developer's guide [3] We welcome patches. Please read the
[Google Test developer's guide](
http://code.google.com/p/googletest/wiki/GoogleTestDevGuide)
for how you can contribute. In particular, make sure you have signed for how you can contribute. In particular, make sure you have signed
the Contributor License Agreement, or we won't be able to accept the the Contributor License Agreement, or we won't be able to accept the
patch. patch.
[3] http://code.google.com/p/googletest/wiki/GoogleTestDevGuide
Happy testing! Happy testing!