• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..11-Apr-2017-

build-aux/H11-Apr-2017-

cmake/H11-Apr-2017-228210

codegear/H11-Apr-2017-443361

include/gtest/H11-Apr-2017-21,98414,806

m4/H11-Apr-2017-439395

make/H11-Apr-2017-8128

msvc/H11-Apr-2017-1,2321,222

samples/H11-Apr-2017-2,152771

scripts/H11-Apr-2017-3,6402,714

src/H11-Apr-2017-9,1975,447

test/H03-May-2022-25,21116,127

xcode/H11-Apr-2017-2,1781,826

CHANGESH A D11-Apr-20175.2 KiB131111

CONTRIBUTORSH A D11-Apr-20171.3 KiB3836

LICENSEH A D11-Apr-20171.4 KiB2925

Makefile.amH A D11-Apr-20179.5 KiB305232

READMEH A D11-Apr-201715.6 KiB435310

configure.acH A D11-Apr-20172.5 KiB6958

README

1Google C++ Testing Framework
2============================
3
4http://code.google.com/p/googletest/
5
6Overview
7--------
8
9Google's framework for writing C++ tests on a variety of platforms
10(Linux, Mac OS X, Windows, Windows CE, Symbian, etc).  Based on the
11xUnit architecture.  Supports automatic test discovery, a rich set of
12assertions, user-defined assertions, death tests, fatal and non-fatal
13failures, various options for running the tests, and XML test report
14generation.
15
16Please see the project page above for more information as well as the
17mailing list for questions, discussions, and development.  There is
18also an IRC channel on OFTC (irc.oftc.net) #gtest available.  Please
19join us!
20
21Requirements for End Users
22--------------------------
23
24Google Test is designed to have fairly minimal requirements to build
25and use with your projects, but there are some.  Currently, we support
26Linux, Windows, Mac OS X, and Cygwin.  We will also make our best
27effort to support other platforms (e.g. Solaris, AIX, and z/OS).
28However, since core members of the Google Test project have no access
29to these platforms, Google Test may have outstanding issues there.  If
30you notice any problems on your platform, please notify
31googletestframework@googlegroups.com.  Patches for fixing them are
32even more welcome!
33
34### Linux Requirements ###
35
36These are the base requirements to build and use Google Test from a source
37package (as described below):
38  * GNU-compatible Make or gmake
39  * POSIX-standard shell
40  * POSIX(-2) Regular Expressions (regex.h)
41  * A C++98-standard-compliant compiler
42
43### Windows Requirements ###
44
45  * Microsoft Visual C++ 7.1 or newer
46
47### Cygwin Requirements ###
48
49  * Cygwin 1.5.25-14 or newer
50
51### Mac OS X Requirements ###
52
53  * Mac OS X 10.4 Tiger or newer
54  * Developer Tools Installed
55
56Also, you'll need CMake 2.6.4 or higher if you want to build the
57samples using the provided CMake script, regardless of the platform.
58
59Requirements for Contributors
60-----------------------------
61
62We welcome patches.  If you plan to contribute a patch, you need to
63build Google Test and its own tests from an SVN checkout (described
64below), which has further requirements:
65
66  * Python version 2.3 or newer (for running some of the tests and
67    re-generating certain source files from templates)
68  * CMake 2.6.4 or newer
69
70Getting the Source
71------------------
72
73There are two primary ways of getting Google Test's source code: you
74can download a stable source release in your preferred archive format,
75or directly check out the source from our Subversion (SVN) repositary.
76The SVN checkout requires a few extra steps and some extra software
77packages on your system, but lets you track the latest development and
78make patches much more easily, so we highly encourage it.
79
80### Source Package ###
81
82Google Test is released in versioned source packages which can be
83downloaded from the download page [1].  Several different archive
84formats are provided, but the only difference is the tools used to
85manipulate them, and the size of the resulting file.  Download
86whichever you are most comfortable with.
87
88  [1] http://code.google.com/p/googletest/downloads/list
89
90Once the package is downloaded, expand it using whichever tools you
91prefer for that type.  This will result in a new directory with the
92name "gtest-X.Y.Z" which contains all of the source code.  Here are
93some examples on Linux:
94
95  tar -xvzf gtest-X.Y.Z.tar.gz
96  tar -xvjf gtest-X.Y.Z.tar.bz2
97  unzip gtest-X.Y.Z.zip
98
99### SVN Checkout ###
100
101To check out the main branch (also known as the "trunk") of Google
102Test, run the following Subversion command:
103
104  svn checkout http://googletest.googlecode.com/svn/trunk/ gtest-svn
105
106Setting up the Build
107--------------------
108
109To build Google Test and your tests that use it, you need to tell your
110build system where to find its headers and source files.  The exact
111way to do it depends on which build system you use, and is usually
112straightforward.
113
114### Generic Build Instructions ###
115
116Suppose you put Google Test in directory ${GTEST_DIR}.  To build it,
117create a library build target (or a project as called by Visual Studio
118and Xcode) to compile
119
120  ${GTEST_DIR}/src/gtest-all.cc
121
122with
123
124  ${GTEST_DIR}/include and ${GTEST_DIR}
125
126in the header search path.  Assuming a Linux-like system and gcc,
127something like the following will do:
128
129  g++ -I${GTEST_DIR}/include -I${GTEST_DIR} -c ${GTEST_DIR}/src/gtest-all.cc
130  ar -rv libgtest.a gtest-all.o
131
132Next, you should compile your test source file with
133${GTEST_DIR}/include in the header search path, and link it with gtest
134and any other necessary libraries:
135
136  g++ -I${GTEST_DIR}/include path/to/your_test.cc libgtest.a -o your_test
137
138As an example, the make/ directory contains a Makefile that you can
139use to build Google Test on systems where GNU make is available
140(e.g. Linux, Mac OS X, and Cygwin).  It doesn't try to build Google
141Test's own tests.  Instead, it just builds the Google Test library and
142a sample test.  You can use it as a starting point for your own build
143script.
144
145If the default settings are correct for your environment, the
146following commands should succeed:
147
148  cd ${GTEST_DIR}/make
149  make
150  ./sample1_unittest
151
152If you see errors, try to tweak the contents of make/Makefile to make
153them go away.  There are instructions in make/Makefile on how to do
154it.
155
156### Using CMake ###
157
158Google Test comes with a CMake build script (CMakeLists.txt) that can
159be used on a wide range of platforms ("C" stands for cross-platofrm.).
160If you don't have CMake installed already, you can download it for
161free from http://www.cmake.org/.
162
163CMake works by generating native makefiles or build projects that can
164be used in the compiler environment of your choice.  The typical
165workflow starts with:
166
167  mkdir mybuild       # Create a directory to hold the build output.
168  cd mybuild
169  cmake ${GTEST_DIR}  # Generate native build scripts.
170
171If you want to build Google Test's samples, you should replace the
172last command with
173
174  cmake -Dgtest_build_samples=ON ${GTEST_DIR}
175
176If you are on a *nix system, you should now see a Makefile in the
177current directory.  Just type 'make' to build gtest.
178
179If you use Windows and have Vistual Studio installed, a gtest.sln file
180and several .vcproj files will be created.  You can then build them
181using Visual Studio.
182
183On Mac OS X with Xcode installed, a .xcodeproj file will be generated.
184
185### Legacy Build Scripts ###
186
187Before settling on CMake, we have been providing hand-maintained build
188projects/scripts for Visual Studio, Xcode, and Autotools.  While we
189continue to provide them for convenience, they are not actively
190maintained any more.  We highly recommend that you follow the
191instructions in the previous two sections to integrate Google Test
192with your existing build system.
193
194If you still need to use the legacy build scripts, here's how:
195
196The msvc\ folder contains two solutions with Visual C++ projects.
197Open the gtest.sln or gtest-md.sln file using Visual Studio, and you
198are ready to build Google Test the same way you build any Visual
199Studio project.  Files that have names ending with -md use DLL
200versions of Microsoft runtime libraries (the /MD or the /MDd compiler
201option).  Files without that suffix use static versions of the runtime
202libraries (the /MT or the /MTd option).  Please note that one must use
203the same option to compile both gtest and the test code.  If you use
204Visual Studio 2005 or above, we recommend the -md version as /MD is
205the default for new projects in these versions of Visual Studio.
206
207On Mac OS X, open the gtest.xcodeproj in the xcode/ folder using
208Xcode.  Build the "gtest" target.  The universal binary framework will
209end up in your selected build directory (selected in the Xcode
210"Preferences..." -> "Building" pane and defaults to xcode/build).
211Alternatively, at the command line, enter:
212
213  xcodebuild
214
215This will build the "Release" configuration of gtest.framework in your
216default build location.  See the "xcodebuild" man page for more
217information about building different configurations and building in
218different locations.
219
220If you wish to use the Google Test Xcode project with Xcode 4.x and
221above, you need to either:
222 * update the SDK configuration options in xcode/Config/General.xconfig.
223   Comment options SDKROOT, MACOS_DEPLOYMENT_TARGET, and GCC_VERSION. If
224   you choose this route you lose the ability to target earlier versions
225   of MacOS X.
226 * Install an SDK for an earlier version. This doesn't appear to be
227   supported by Apple, but has been reported to work
228   (http://stackoverflow.com/questions/5378518).
229
230Tweaking Google Test
231--------------------
232
233Google Test can be used in diverse environments.  The default
234configuration may not work (or may not work well) out of the box in
235some environments.  However, you can easily tweak Google Test by
236defining control macros on the compiler command line.  Generally,
237these macros are named like GTEST_XYZ and you define them to either 1
238or 0 to enable or disable a certain feature.
239
240We list the most frequently used macros below.  For a complete list,
241see file include/gtest/internal/gtest-port.h.
242
243### Choosing a TR1 Tuple Library ###
244
245Some Google Test features require the C++ Technical Report 1 (TR1)
246tuple library, which is not yet available with all compilers.  The
247good news is that Google Test implements a subset of TR1 tuple that's
248enough for its own need, and will automatically use this when the
249compiler doesn't provide TR1 tuple.
250
251Usually you don't need to care about which tuple library Google Test
252uses.  However, if your project already uses TR1 tuple, you need to
253tell Google Test to use the same TR1 tuple library the rest of your
254project uses, or the two tuple implementations will clash.  To do
255that, add
256
257  -DGTEST_USE_OWN_TR1_TUPLE=0
258
259to the compiler flags while compiling Google Test and your tests.  If
260you want to force Google Test to use its own tuple library, just add
261
262  -DGTEST_USE_OWN_TR1_TUPLE=1
263
264to the compiler flags instead.
265
266If you don't want Google Test to use tuple at all, add
267
268  -DGTEST_HAS_TR1_TUPLE=0
269
270and all features using tuple will be disabled.
271
272### Multi-threaded Tests ###
273
274Google Test is thread-safe where the pthread library is available.
275After #include "gtest/gtest.h", you can check the GTEST_IS_THREADSAFE
276macro to see whether this is the case (yes if the macro is #defined to
2771, no if it's undefined.).
278
279If Google Test doesn't correctly detect whether pthread is available
280in your environment, you can force it with
281
282  -DGTEST_HAS_PTHREAD=1
283
284or
285
286  -DGTEST_HAS_PTHREAD=0
287
288When Google Test uses pthread, you may need to add flags to your
289compiler and/or linker to select the pthread library, or you'll get
290link errors.  If you use the CMake script or the deprecated Autotools
291script, this is taken care of for you.  If you use your own build
292script, you'll need to read your compiler and linker's manual to
293figure out what flags to add.
294
295### As a Shared Library (DLL) ###
296
297Google Test is compact, so most users can build and link it as a
298static library for the simplicity.  You can choose to use Google Test
299as a shared library (known as a DLL on Windows) if you prefer.
300
301To compile *gtest* as a shared library, add
302
303  -DGTEST_CREATE_SHARED_LIBRARY=1
304
305to the compiler flags.  You'll also need to tell the linker to produce
306a shared library instead - consult your linker's manual for how to do
307it.
308
309To compile your *tests* that use the gtest shared library, add
310
311  -DGTEST_LINKED_AS_SHARED_LIBRARY=1
312
313to the compiler flags.
314
315Note: while the above steps aren't technically necessary today when
316using some compilers (e.g. GCC), they may become necessary in the
317future, if we decide to improve the speed of loading the library (see
318http://gcc.gnu.org/wiki/Visibility for details).  Therefore you are
319recommended to always add the above flags when using Google Test as a
320shared library.  Otherwise a future release of Google Test may break
321your build script.
322
323### Avoiding Macro Name Clashes ###
324
325In C++, macros don't obey namespaces.  Therefore two libraries that
326both define a macro of the same name will clash if you #include both
327definitions.  In case a Google Test macro clashes with another
328library, you can force Google Test to rename its macro to avoid the
329conflict.
330
331Specifically, if both Google Test and some other code define macro
332FOO, you can add
333
334  -DGTEST_DONT_DEFINE_FOO=1
335
336to the compiler flags to tell Google Test to change the macro's name
337from FOO to GTEST_FOO.  Currently FOO can be FAIL, SUCCEED, or TEST.
338For example, with -DGTEST_DONT_DEFINE_TEST=1, you'll need to write
339
340  GTEST_TEST(SomeTest, DoesThis) { ... }
341
342instead of
343
344  TEST(SomeTest, DoesThis) { ... }
345
346in order to define a test.
347
348Upgrating from an Earlier Version
349---------------------------------
350
351We strive to keep Google Test releases backward compatible.
352Sometimes, though, we have to make some breaking changes for the
353users' long-term benefits.  This section describes what you'll need to
354do if you are upgrading from an earlier version of Google Test.
355
356### Upgrading from 1.3.0 or Earlier ###
357
358You may need to explicitly enable or disable Google Test's own TR1
359tuple library.  See the instructions in section "Choosing a TR1 Tuple
360Library".
361
362### Upgrading from 1.4.0 or Earlier ###
363
364The Autotools build script (configure + make) is no longer officially
365supportted.  You are encouraged to migrate to your own build system or
366use CMake.  If you still need to use Autotools, you can find
367instructions in the README file from Google Test 1.4.0.
368
369On platforms where the pthread library is available, Google Test uses
370it in order to be thread-safe.  See the "Multi-threaded Tests" section
371for what this means to your build script.
372
373If you use Microsoft Visual C++ 7.1 with exceptions disabled, Google
374Test will no longer compile.  This should affect very few people, as a
375large portion of STL (including <string>) doesn't compile in this mode
376anyway.  We decided to stop supporting it in order to greatly simplify
377Google Test's implementation.
378
379Developing Google Test
380----------------------
381
382This section discusses how to make your own changes to Google Test.
383
384### Testing Google Test Itself ###
385
386To make sure your changes work as intended and don't break existing
387functionality, you'll want to compile and run Google Test's own tests.
388For that you can use CMake:
389
390  mkdir mybuild
391  cd mybuild
392  cmake -Dgtest_build_tests=ON ${GTEST_DIR}
393
394Make sure you have Python installed, as some of Google Test's tests
395are written in Python.  If the cmake command complains about not being
396able to find Python ("Could NOT find PythonInterp (missing:
397PYTHON_EXECUTABLE)"), try telling it explicitly where your Python
398executable can be found:
399
400  cmake -DPYTHON_EXECUTABLE=path/to/python -Dgtest_build_tests=ON ${GTEST_DIR}
401
402Next, you can build Google Test and all of its own tests.  On *nix,
403this is usually done by 'make'.  To run the tests, do
404
405  make test
406
407All tests should pass.
408
409### Regenerating Source Files ###
410
411Some of Google Test's source files are generated from templates (not
412in the C++ sense) using a script.  A template file is named FOO.pump,
413where FOO is the name of the file it will generate.  For example, the
414file include/gtest/internal/gtest-type-util.h.pump is used to generate
415gtest-type-util.h in the same directory.
416
417Normally you don't need to worry about regenerating the source files,
418unless you need to modify them.  In that case, you should modify the
419corresponding .pump files instead and run the pump.py Python script to
420regenerate them.  You can find pump.py in the scripts/ directory.
421Read the Pump manual [2] for how to use it.
422
423  [2] http://code.google.com/p/googletest/wiki/PumpManual
424
425### Contributing a Patch ###
426
427We welcome patches.  Please read the Google Test developer's guide [3]
428for how you can contribute.  In particular, make sure you have signed
429the Contributor License Agreement, or we won't be able to accept the
430patch.
431
432  [3] http://code.google.com/p/googletest/wiki/GoogleTestDevGuide
433
434Happy testing!
435