2019-01-20 04:15:48 -07:00
|
|
|
### Generic Build Instructions
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
#### Setup
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
To build Google Test and your tests that use it, you need to tell your build
|
|
|
|
system where to find its headers and source files. The exact way to do it
|
|
|
|
depends on which build system you use, and is usually straightforward.
|
2017-04-25 09:19:19 -06:00
|
|
|
|
Update to Google Test 1.10.0 (!117)
So far GParted includes Google Test 1.8.1 [1], which was the latest
release which supported pre-C++11 compilers [2]. Now that GParted
requires C++11 compilation, update to Google Test 1.10.0. Replace the
following files and directories from Google Test 1.10.0:
LICENSE
README.md
include/
src/
Note the LICENSE file is identical, where as the other files have
changed. This includes file additions and removals, hence the change
to Makefile.am too.
Even though Google Test releases up to and including 1.12.1 are
compilable with C++11 compilers [3], it is not possible to upgrade
beyond Google Test 1.10.0 at this time because later releases fail to
compile on on still supported RHEL / CentOS 7 with this error:
$ cd lib/gtest
$ make check
...
./include/gtest/gtest-matchers.h:414:12: error: 'is_trivially_copy_constructible' is not a member of 'std'
std::is_trivially_copy_constructible<M>::value &&
^
This failure turns out to be because GCC libstdc++ 4.8.5 doesn't include
is_trivially_copy_constructible et al [4][5].
[1] commit 2b222978f5e68964a3fa6d9e05e56bfdf6ab0526
Update to Google Test 1.8.1
[2] Google Test release v1.8.1
https://github.com/google/googletest/releases/tag/release-1.8.1
"The 1.8.x is the last release supporting pre-C++11 compilers."
[3] Google Test release v1.12.1
https://github.com/google/googletest/releases/tag/release-1.12.1
"This will be the last release to support C++11. Future releases
will require at least C++14."
[4] 'is_trivially_copyable' is not a member of 'std'
https://stackoverflow.com/questions/25123458/is-trivially-copyable-is-not-a-member-of-std/25123551#25123551
"Some of them are not implemented. If we look at libstdc++'s C++11
status page:
Type properties are listed as partially implemented.
They list as missing:
...
is trivially_copy_constructible
"
[5] The GNU C++ Library, 1. Status, C++11
https://gcc.gnu.org/onlinedocs/gcc-4.8.3/libstdc++/manual/manual/status.html#status.iso.2011
"
| Section | Description | Status | Comments
...
| 20.9.4.3 | Type properties | Partial | Missing
is_trivially_copyable, is_trivially_constructible,
is_trivially_default_constructible, is_trivially_copy_constructible,
is_trivially_move_constructible, is_trivially_assignable,
is_trivially_default_assignable, is_trivially_copy_assignable,
is_trivially_move_assignable |
"
Closes !117 - Require C++11 compilation
2023-09-03 04:35:51 -06:00
|
|
|
### Build with CMake
|
2017-04-25 09:19:19 -06:00
|
|
|
|
|
|
|
Google Test comes with a CMake build script (
|
2019-01-20 04:15:48 -07:00
|
|
|
[CMakeLists.txt](https://github.com/google/googletest/blob/master/CMakeLists.txt))
|
|
|
|
that can be used on a wide range of platforms ("C" stands for cross-platform.).
|
|
|
|
If you don't have CMake installed already, you can download it for free from
|
|
|
|
<http://www.cmake.org/>.
|
|
|
|
|
|
|
|
CMake works by generating native makefiles or build projects that can be used in
|
|
|
|
the compiler environment of your choice. You can either build Google Test as a
|
|
|
|
standalone project or it can be incorporated into an existing CMake build for
|
|
|
|
another project.
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
#### Standalone CMake Project
|
|
|
|
|
|
|
|
When building Google Test as a standalone project, the typical workflow starts
|
|
|
|
with:
|
2017-04-25 09:19:19 -06:00
|
|
|
|
|
|
|
mkdir mybuild # Create a directory to hold the build output.
|
|
|
|
cd mybuild
|
|
|
|
cmake ${GTEST_DIR} # Generate native build scripts.
|
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
If you want to build Google Test's samples, you should replace the last command
|
|
|
|
with
|
2017-04-25 09:19:19 -06:00
|
|
|
|
|
|
|
cmake -Dgtest_build_samples=ON ${GTEST_DIR}
|
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
If you are on a \*nix system, you should now see a Makefile in the current
|
|
|
|
directory. Just type 'make' to build gtest.
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
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 using Visual
|
|
|
|
Studio.
|
2017-04-25 09:19:19 -06:00
|
|
|
|
|
|
|
On Mac OS X with Xcode installed, a `.xcodeproj` file will be generated.
|
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
#### Incorporating Into An Existing CMake Project
|
|
|
|
|
|
|
|
If you want to use gtest in a project which already uses CMake, then a more
|
|
|
|
robust and flexible approach is to build gtest as part of that project directly.
|
|
|
|
This is done by making the GoogleTest source code available to the main build
|
|
|
|
and adding it using CMake's `add_subdirectory()` command. This has the
|
|
|
|
significant advantage that the same compiler and linker settings are used
|
|
|
|
between gtest and the rest of your project, so issues associated with using
|
|
|
|
incompatible libraries (eg debug/release), etc. are avoided. This is
|
|
|
|
particularly useful on Windows. Making GoogleTest's source code available to the
|
|
|
|
main build can be done a few different ways:
|
|
|
|
|
|
|
|
* Download the GoogleTest source code manually and place it at a known
|
|
|
|
location. This is the least flexible approach and can make it more difficult
|
|
|
|
to use with continuous integration systems, etc.
|
|
|
|
* Embed the GoogleTest source code as a direct copy in the main project's
|
|
|
|
source tree. This is often the simplest approach, but is also the hardest to
|
|
|
|
keep up to date. Some organizations may not permit this method.
|
|
|
|
* Add GoogleTest as a git submodule or equivalent. This may not always be
|
|
|
|
possible or appropriate. Git submodules, for example, have their own set of
|
|
|
|
advantages and drawbacks.
|
|
|
|
* Use CMake to download GoogleTest as part of the build's configure step. This
|
|
|
|
is just a little more complex, but doesn't have the limitations of the other
|
|
|
|
methods.
|
|
|
|
|
|
|
|
The last of the above methods is implemented with a small piece of CMake code in
|
|
|
|
a separate file (e.g. `CMakeLists.txt.in`) which is copied to the build area and
|
|
|
|
then invoked as a sub-build _during the CMake stage_. That directory is then
|
|
|
|
pulled into the main build with `add_subdirectory()`. For example:
|
|
|
|
|
|
|
|
New file `CMakeLists.txt.in`:
|
|
|
|
|
Update to Google Test 1.10.0 (!117)
So far GParted includes Google Test 1.8.1 [1], which was the latest
release which supported pre-C++11 compilers [2]. Now that GParted
requires C++11 compilation, update to Google Test 1.10.0. Replace the
following files and directories from Google Test 1.10.0:
LICENSE
README.md
include/
src/
Note the LICENSE file is identical, where as the other files have
changed. This includes file additions and removals, hence the change
to Makefile.am too.
Even though Google Test releases up to and including 1.12.1 are
compilable with C++11 compilers [3], it is not possible to upgrade
beyond Google Test 1.10.0 at this time because later releases fail to
compile on on still supported RHEL / CentOS 7 with this error:
$ cd lib/gtest
$ make check
...
./include/gtest/gtest-matchers.h:414:12: error: 'is_trivially_copy_constructible' is not a member of 'std'
std::is_trivially_copy_constructible<M>::value &&
^
This failure turns out to be because GCC libstdc++ 4.8.5 doesn't include
is_trivially_copy_constructible et al [4][5].
[1] commit 2b222978f5e68964a3fa6d9e05e56bfdf6ab0526
Update to Google Test 1.8.1
[2] Google Test release v1.8.1
https://github.com/google/googletest/releases/tag/release-1.8.1
"The 1.8.x is the last release supporting pre-C++11 compilers."
[3] Google Test release v1.12.1
https://github.com/google/googletest/releases/tag/release-1.12.1
"This will be the last release to support C++11. Future releases
will require at least C++14."
[4] 'is_trivially_copyable' is not a member of 'std'
https://stackoverflow.com/questions/25123458/is-trivially-copyable-is-not-a-member-of-std/25123551#25123551
"Some of them are not implemented. If we look at libstdc++'s C++11
status page:
Type properties are listed as partially implemented.
They list as missing:
...
is trivially_copy_constructible
"
[5] The GNU C++ Library, 1. Status, C++11
https://gcc.gnu.org/onlinedocs/gcc-4.8.3/libstdc++/manual/manual/status.html#status.iso.2011
"
| Section | Description | Status | Comments
...
| 20.9.4.3 | Type properties | Partial | Missing
is_trivially_copyable, is_trivially_constructible,
is_trivially_default_constructible, is_trivially_copy_constructible,
is_trivially_move_constructible, is_trivially_assignable,
is_trivially_default_assignable, is_trivially_copy_assignable,
is_trivially_move_assignable |
"
Closes !117 - Require C++11 compilation
2023-09-03 04:35:51 -06:00
|
|
|
```cmake
|
|
|
|
cmake_minimum_required(VERSION 2.8.2)
|
2019-01-20 04:15:48 -07:00
|
|
|
|
Update to Google Test 1.10.0 (!117)
So far GParted includes Google Test 1.8.1 [1], which was the latest
release which supported pre-C++11 compilers [2]. Now that GParted
requires C++11 compilation, update to Google Test 1.10.0. Replace the
following files and directories from Google Test 1.10.0:
LICENSE
README.md
include/
src/
Note the LICENSE file is identical, where as the other files have
changed. This includes file additions and removals, hence the change
to Makefile.am too.
Even though Google Test releases up to and including 1.12.1 are
compilable with C++11 compilers [3], it is not possible to upgrade
beyond Google Test 1.10.0 at this time because later releases fail to
compile on on still supported RHEL / CentOS 7 with this error:
$ cd lib/gtest
$ make check
...
./include/gtest/gtest-matchers.h:414:12: error: 'is_trivially_copy_constructible' is not a member of 'std'
std::is_trivially_copy_constructible<M>::value &&
^
This failure turns out to be because GCC libstdc++ 4.8.5 doesn't include
is_trivially_copy_constructible et al [4][5].
[1] commit 2b222978f5e68964a3fa6d9e05e56bfdf6ab0526
Update to Google Test 1.8.1
[2] Google Test release v1.8.1
https://github.com/google/googletest/releases/tag/release-1.8.1
"The 1.8.x is the last release supporting pre-C++11 compilers."
[3] Google Test release v1.12.1
https://github.com/google/googletest/releases/tag/release-1.12.1
"This will be the last release to support C++11. Future releases
will require at least C++14."
[4] 'is_trivially_copyable' is not a member of 'std'
https://stackoverflow.com/questions/25123458/is-trivially-copyable-is-not-a-member-of-std/25123551#25123551
"Some of them are not implemented. If we look at libstdc++'s C++11
status page:
Type properties are listed as partially implemented.
They list as missing:
...
is trivially_copy_constructible
"
[5] The GNU C++ Library, 1. Status, C++11
https://gcc.gnu.org/onlinedocs/gcc-4.8.3/libstdc++/manual/manual/status.html#status.iso.2011
"
| Section | Description | Status | Comments
...
| 20.9.4.3 | Type properties | Partial | Missing
is_trivially_copyable, is_trivially_constructible,
is_trivially_default_constructible, is_trivially_copy_constructible,
is_trivially_move_constructible, is_trivially_assignable,
is_trivially_default_assignable, is_trivially_copy_assignable,
is_trivially_move_assignable |
"
Closes !117 - Require C++11 compilation
2023-09-03 04:35:51 -06:00
|
|
|
project(googletest-download NONE)
|
2019-01-20 04:15:48 -07:00
|
|
|
|
Update to Google Test 1.10.0 (!117)
So far GParted includes Google Test 1.8.1 [1], which was the latest
release which supported pre-C++11 compilers [2]. Now that GParted
requires C++11 compilation, update to Google Test 1.10.0. Replace the
following files and directories from Google Test 1.10.0:
LICENSE
README.md
include/
src/
Note the LICENSE file is identical, where as the other files have
changed. This includes file additions and removals, hence the change
to Makefile.am too.
Even though Google Test releases up to and including 1.12.1 are
compilable with C++11 compilers [3], it is not possible to upgrade
beyond Google Test 1.10.0 at this time because later releases fail to
compile on on still supported RHEL / CentOS 7 with this error:
$ cd lib/gtest
$ make check
...
./include/gtest/gtest-matchers.h:414:12: error: 'is_trivially_copy_constructible' is not a member of 'std'
std::is_trivially_copy_constructible<M>::value &&
^
This failure turns out to be because GCC libstdc++ 4.8.5 doesn't include
is_trivially_copy_constructible et al [4][5].
[1] commit 2b222978f5e68964a3fa6d9e05e56bfdf6ab0526
Update to Google Test 1.8.1
[2] Google Test release v1.8.1
https://github.com/google/googletest/releases/tag/release-1.8.1
"The 1.8.x is the last release supporting pre-C++11 compilers."
[3] Google Test release v1.12.1
https://github.com/google/googletest/releases/tag/release-1.12.1
"This will be the last release to support C++11. Future releases
will require at least C++14."
[4] 'is_trivially_copyable' is not a member of 'std'
https://stackoverflow.com/questions/25123458/is-trivially-copyable-is-not-a-member-of-std/25123551#25123551
"Some of them are not implemented. If we look at libstdc++'s C++11
status page:
Type properties are listed as partially implemented.
They list as missing:
...
is trivially_copy_constructible
"
[5] The GNU C++ Library, 1. Status, C++11
https://gcc.gnu.org/onlinedocs/gcc-4.8.3/libstdc++/manual/manual/status.html#status.iso.2011
"
| Section | Description | Status | Comments
...
| 20.9.4.3 | Type properties | Partial | Missing
is_trivially_copyable, is_trivially_constructible,
is_trivially_default_constructible, is_trivially_copy_constructible,
is_trivially_move_constructible, is_trivially_assignable,
is_trivially_default_assignable, is_trivially_copy_assignable,
is_trivially_move_assignable |
"
Closes !117 - Require C++11 compilation
2023-09-03 04:35:51 -06:00
|
|
|
include(ExternalProject)
|
|
|
|
ExternalProject_Add(googletest
|
|
|
|
GIT_REPOSITORY https://github.com/google/googletest.git
|
|
|
|
GIT_TAG master
|
|
|
|
SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-src"
|
|
|
|
BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-build"
|
|
|
|
CONFIGURE_COMMAND ""
|
|
|
|
BUILD_COMMAND ""
|
|
|
|
INSTALL_COMMAND ""
|
|
|
|
TEST_COMMAND ""
|
|
|
|
)
|
|
|
|
```
|
2019-01-20 04:15:48 -07:00
|
|
|
|
|
|
|
Existing build's `CMakeLists.txt`:
|
|
|
|
|
Update to Google Test 1.10.0 (!117)
So far GParted includes Google Test 1.8.1 [1], which was the latest
release which supported pre-C++11 compilers [2]. Now that GParted
requires C++11 compilation, update to Google Test 1.10.0. Replace the
following files and directories from Google Test 1.10.0:
LICENSE
README.md
include/
src/
Note the LICENSE file is identical, where as the other files have
changed. This includes file additions and removals, hence the change
to Makefile.am too.
Even though Google Test releases up to and including 1.12.1 are
compilable with C++11 compilers [3], it is not possible to upgrade
beyond Google Test 1.10.0 at this time because later releases fail to
compile on on still supported RHEL / CentOS 7 with this error:
$ cd lib/gtest
$ make check
...
./include/gtest/gtest-matchers.h:414:12: error: 'is_trivially_copy_constructible' is not a member of 'std'
std::is_trivially_copy_constructible<M>::value &&
^
This failure turns out to be because GCC libstdc++ 4.8.5 doesn't include
is_trivially_copy_constructible et al [4][5].
[1] commit 2b222978f5e68964a3fa6d9e05e56bfdf6ab0526
Update to Google Test 1.8.1
[2] Google Test release v1.8.1
https://github.com/google/googletest/releases/tag/release-1.8.1
"The 1.8.x is the last release supporting pre-C++11 compilers."
[3] Google Test release v1.12.1
https://github.com/google/googletest/releases/tag/release-1.12.1
"This will be the last release to support C++11. Future releases
will require at least C++14."
[4] 'is_trivially_copyable' is not a member of 'std'
https://stackoverflow.com/questions/25123458/is-trivially-copyable-is-not-a-member-of-std/25123551#25123551
"Some of them are not implemented. If we look at libstdc++'s C++11
status page:
Type properties are listed as partially implemented.
They list as missing:
...
is trivially_copy_constructible
"
[5] The GNU C++ Library, 1. Status, C++11
https://gcc.gnu.org/onlinedocs/gcc-4.8.3/libstdc++/manual/manual/status.html#status.iso.2011
"
| Section | Description | Status | Comments
...
| 20.9.4.3 | Type properties | Partial | Missing
is_trivially_copyable, is_trivially_constructible,
is_trivially_default_constructible, is_trivially_copy_constructible,
is_trivially_move_constructible, is_trivially_assignable,
is_trivially_default_assignable, is_trivially_copy_assignable,
is_trivially_move_assignable |
"
Closes !117 - Require C++11 compilation
2023-09-03 04:35:51 -06:00
|
|
|
```cmake
|
|
|
|
# Download and unpack googletest at configure time
|
|
|
|
configure_file(CMakeLists.txt.in googletest-download/CMakeLists.txt)
|
|
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
|
|
|
|
RESULT_VARIABLE result
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/googletest-download )
|
|
|
|
if(result)
|
|
|
|
message(FATAL_ERROR "CMake step for googletest failed: ${result}")
|
|
|
|
endif()
|
|
|
|
execute_process(COMMAND ${CMAKE_COMMAND} --build .
|
|
|
|
RESULT_VARIABLE result
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/googletest-download )
|
|
|
|
if(result)
|
|
|
|
message(FATAL_ERROR "Build step for googletest failed: ${result}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Prevent overriding the parent project's compiler/linker
|
|
|
|
# settings on Windows
|
|
|
|
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
|
|
|
|
|
|
|
|
# Add googletest directly to our build. This defines
|
|
|
|
# the gtest and gtest_main targets.
|
|
|
|
add_subdirectory(${CMAKE_CURRENT_BINARY_DIR}/googletest-src
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/googletest-build
|
|
|
|
EXCLUDE_FROM_ALL)
|
|
|
|
|
|
|
|
# The gtest/gtest_main targets carry header search path
|
|
|
|
# dependencies automatically when using CMake 2.8.11 or
|
|
|
|
# later. Otherwise we have to add them here ourselves.
|
|
|
|
if (CMAKE_VERSION VERSION_LESS 2.8.11)
|
|
|
|
include_directories("${gtest_SOURCE_DIR}/include")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Now simply link against gtest or gtest_main as needed. Eg
|
|
|
|
add_executable(example example.cpp)
|
|
|
|
target_link_libraries(example gtest_main)
|
|
|
|
add_test(NAME example_test COMMAND example)
|
|
|
|
```
|
2019-01-20 04:15:48 -07:00
|
|
|
|
|
|
|
Note that this approach requires CMake 2.8.2 or later due to its use of the
|
|
|
|
`ExternalProject_Add()` command. The above technique is discussed in more detail
|
|
|
|
in [this separate article](http://crascit.com/2015/07/25/cmake-gtest/) which
|
|
|
|
also contains a link to a fully generalized implementation of the technique.
|
|
|
|
|
|
|
|
##### Visual Studio Dynamic vs Static Runtimes
|
|
|
|
|
|
|
|
By default, new Visual Studio projects link the C runtimes dynamically but
|
|
|
|
Google Test links them statically. This will generate an error that looks
|
|
|
|
something like the following: gtest.lib(gtest-all.obj) : error LNK2038: mismatch
|
|
|
|
detected for 'RuntimeLibrary': value 'MTd_StaticDebug' doesn't match value
|
|
|
|
'MDd_DynamicDebug' in main.obj
|
|
|
|
|
|
|
|
Google Test already has a CMake option for this: `gtest_force_shared_crt`
|
|
|
|
|
|
|
|
Enabling this option will make gtest link the runtimes dynamically too, and
|
|
|
|
match the project in which it is included.
|
|
|
|
|
Update to Google Test 1.10.0 (!117)
So far GParted includes Google Test 1.8.1 [1], which was the latest
release which supported pre-C++11 compilers [2]. Now that GParted
requires C++11 compilation, update to Google Test 1.10.0. Replace the
following files and directories from Google Test 1.10.0:
LICENSE
README.md
include/
src/
Note the LICENSE file is identical, where as the other files have
changed. This includes file additions and removals, hence the change
to Makefile.am too.
Even though Google Test releases up to and including 1.12.1 are
compilable with C++11 compilers [3], it is not possible to upgrade
beyond Google Test 1.10.0 at this time because later releases fail to
compile on on still supported RHEL / CentOS 7 with this error:
$ cd lib/gtest
$ make check
...
./include/gtest/gtest-matchers.h:414:12: error: 'is_trivially_copy_constructible' is not a member of 'std'
std::is_trivially_copy_constructible<M>::value &&
^
This failure turns out to be because GCC libstdc++ 4.8.5 doesn't include
is_trivially_copy_constructible et al [4][5].
[1] commit 2b222978f5e68964a3fa6d9e05e56bfdf6ab0526
Update to Google Test 1.8.1
[2] Google Test release v1.8.1
https://github.com/google/googletest/releases/tag/release-1.8.1
"The 1.8.x is the last release supporting pre-C++11 compilers."
[3] Google Test release v1.12.1
https://github.com/google/googletest/releases/tag/release-1.12.1
"This will be the last release to support C++11. Future releases
will require at least C++14."
[4] 'is_trivially_copyable' is not a member of 'std'
https://stackoverflow.com/questions/25123458/is-trivially-copyable-is-not-a-member-of-std/25123551#25123551
"Some of them are not implemented. If we look at libstdc++'s C++11
status page:
Type properties are listed as partially implemented.
They list as missing:
...
is trivially_copy_constructible
"
[5] The GNU C++ Library, 1. Status, C++11
https://gcc.gnu.org/onlinedocs/gcc-4.8.3/libstdc++/manual/manual/status.html#status.iso.2011
"
| Section | Description | Status | Comments
...
| 20.9.4.3 | Type properties | Partial | Missing
is_trivially_copyable, is_trivially_constructible,
is_trivially_default_constructible, is_trivially_copy_constructible,
is_trivially_move_constructible, is_trivially_assignable,
is_trivially_default_assignable, is_trivially_copy_assignable,
is_trivially_move_assignable |
"
Closes !117 - Require C++11 compilation
2023-09-03 04:35:51 -06:00
|
|
|
#### C++ Standard Version
|
2019-01-20 04:15:48 -07:00
|
|
|
|
Update to Google Test 1.10.0 (!117)
So far GParted includes Google Test 1.8.1 [1], which was the latest
release which supported pre-C++11 compilers [2]. Now that GParted
requires C++11 compilation, update to Google Test 1.10.0. Replace the
following files and directories from Google Test 1.10.0:
LICENSE
README.md
include/
src/
Note the LICENSE file is identical, where as the other files have
changed. This includes file additions and removals, hence the change
to Makefile.am too.
Even though Google Test releases up to and including 1.12.1 are
compilable with C++11 compilers [3], it is not possible to upgrade
beyond Google Test 1.10.0 at this time because later releases fail to
compile on on still supported RHEL / CentOS 7 with this error:
$ cd lib/gtest
$ make check
...
./include/gtest/gtest-matchers.h:414:12: error: 'is_trivially_copy_constructible' is not a member of 'std'
std::is_trivially_copy_constructible<M>::value &&
^
This failure turns out to be because GCC libstdc++ 4.8.5 doesn't include
is_trivially_copy_constructible et al [4][5].
[1] commit 2b222978f5e68964a3fa6d9e05e56bfdf6ab0526
Update to Google Test 1.8.1
[2] Google Test release v1.8.1
https://github.com/google/googletest/releases/tag/release-1.8.1
"The 1.8.x is the last release supporting pre-C++11 compilers."
[3] Google Test release v1.12.1
https://github.com/google/googletest/releases/tag/release-1.12.1
"This will be the last release to support C++11. Future releases
will require at least C++14."
[4] 'is_trivially_copyable' is not a member of 'std'
https://stackoverflow.com/questions/25123458/is-trivially-copyable-is-not-a-member-of-std/25123551#25123551
"Some of them are not implemented. If we look at libstdc++'s C++11
status page:
Type properties are listed as partially implemented.
They list as missing:
...
is trivially_copy_constructible
"
[5] The GNU C++ Library, 1. Status, C++11
https://gcc.gnu.org/onlinedocs/gcc-4.8.3/libstdc++/manual/manual/status.html#status.iso.2011
"
| Section | Description | Status | Comments
...
| 20.9.4.3 | Type properties | Partial | Missing
is_trivially_copyable, is_trivially_constructible,
is_trivially_default_constructible, is_trivially_copy_constructible,
is_trivially_move_constructible, is_trivially_assignable,
is_trivially_default_assignable, is_trivially_copy_assignable,
is_trivially_move_assignable |
"
Closes !117 - Require C++11 compilation
2023-09-03 04:35:51 -06:00
|
|
|
An environment that supports C++11 is required in order to successfully build
|
|
|
|
Google Test. One way to ensure this is to specify the standard in the top-level
|
|
|
|
project, for example by using the `set(CMAKE_CXX_STANDARD 11)` command. If this
|
|
|
|
is not feasible, for example in a C project using Google Test for validation,
|
|
|
|
then it can be specified by adding it to the options for cmake via the
|
|
|
|
`DCMAKE_CXX_FLAGS` option.
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
### Tweaking Google Test
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
Google Test can be used in diverse environments. The default configuration may
|
|
|
|
not work (or may not work well) out of the box in some environments. However,
|
|
|
|
you can easily tweak Google Test by defining control macros on the compiler
|
|
|
|
command line. Generally, these macros are named like `GTEST_XYZ` and you define
|
|
|
|
them to either 1 or 0 to enable or disable a certain feature.
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
We list the most frequently used macros below. For a complete list, see file
|
Update to Google Test 1.10.0 (!117)
So far GParted includes Google Test 1.8.1 [1], which was the latest
release which supported pre-C++11 compilers [2]. Now that GParted
requires C++11 compilation, update to Google Test 1.10.0. Replace the
following files and directories from Google Test 1.10.0:
LICENSE
README.md
include/
src/
Note the LICENSE file is identical, where as the other files have
changed. This includes file additions and removals, hence the change
to Makefile.am too.
Even though Google Test releases up to and including 1.12.1 are
compilable with C++11 compilers [3], it is not possible to upgrade
beyond Google Test 1.10.0 at this time because later releases fail to
compile on on still supported RHEL / CentOS 7 with this error:
$ cd lib/gtest
$ make check
...
./include/gtest/gtest-matchers.h:414:12: error: 'is_trivially_copy_constructible' is not a member of 'std'
std::is_trivially_copy_constructible<M>::value &&
^
This failure turns out to be because GCC libstdc++ 4.8.5 doesn't include
is_trivially_copy_constructible et al [4][5].
[1] commit 2b222978f5e68964a3fa6d9e05e56bfdf6ab0526
Update to Google Test 1.8.1
[2] Google Test release v1.8.1
https://github.com/google/googletest/releases/tag/release-1.8.1
"The 1.8.x is the last release supporting pre-C++11 compilers."
[3] Google Test release v1.12.1
https://github.com/google/googletest/releases/tag/release-1.12.1
"This will be the last release to support C++11. Future releases
will require at least C++14."
[4] 'is_trivially_copyable' is not a member of 'std'
https://stackoverflow.com/questions/25123458/is-trivially-copyable-is-not-a-member-of-std/25123551#25123551
"Some of them are not implemented. If we look at libstdc++'s C++11
status page:
Type properties are listed as partially implemented.
They list as missing:
...
is trivially_copy_constructible
"
[5] The GNU C++ Library, 1. Status, C++11
https://gcc.gnu.org/onlinedocs/gcc-4.8.3/libstdc++/manual/manual/status.html#status.iso.2011
"
| Section | Description | Status | Comments
...
| 20.9.4.3 | Type properties | Partial | Missing
is_trivially_copyable, is_trivially_constructible,
is_trivially_default_constructible, is_trivially_copy_constructible,
is_trivially_move_constructible, is_trivially_assignable,
is_trivially_default_assignable, is_trivially_copy_assignable,
is_trivially_move_assignable |
"
Closes !117 - Require C++11 compilation
2023-09-03 04:35:51 -06:00
|
|
|
[include/gtest/internal/gtest-port.h](https://github.com/google/googletest/blob/master/googletest/include/gtest/internal/gtest-port.h).
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
### Multi-threaded Tests
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
Google Test is thread-safe where the pthread library is available. After
|
Update to Google Test 1.10.0 (!117)
So far GParted includes Google Test 1.8.1 [1], which was the latest
release which supported pre-C++11 compilers [2]. Now that GParted
requires C++11 compilation, update to Google Test 1.10.0. Replace the
following files and directories from Google Test 1.10.0:
LICENSE
README.md
include/
src/
Note the LICENSE file is identical, where as the other files have
changed. This includes file additions and removals, hence the change
to Makefile.am too.
Even though Google Test releases up to and including 1.12.1 are
compilable with C++11 compilers [3], it is not possible to upgrade
beyond Google Test 1.10.0 at this time because later releases fail to
compile on on still supported RHEL / CentOS 7 with this error:
$ cd lib/gtest
$ make check
...
./include/gtest/gtest-matchers.h:414:12: error: 'is_trivially_copy_constructible' is not a member of 'std'
std::is_trivially_copy_constructible<M>::value &&
^
This failure turns out to be because GCC libstdc++ 4.8.5 doesn't include
is_trivially_copy_constructible et al [4][5].
[1] commit 2b222978f5e68964a3fa6d9e05e56bfdf6ab0526
Update to Google Test 1.8.1
[2] Google Test release v1.8.1
https://github.com/google/googletest/releases/tag/release-1.8.1
"The 1.8.x is the last release supporting pre-C++11 compilers."
[3] Google Test release v1.12.1
https://github.com/google/googletest/releases/tag/release-1.12.1
"This will be the last release to support C++11. Future releases
will require at least C++14."
[4] 'is_trivially_copyable' is not a member of 'std'
https://stackoverflow.com/questions/25123458/is-trivially-copyable-is-not-a-member-of-std/25123551#25123551
"Some of them are not implemented. If we look at libstdc++'s C++11
status page:
Type properties are listed as partially implemented.
They list as missing:
...
is trivially_copy_constructible
"
[5] The GNU C++ Library, 1. Status, C++11
https://gcc.gnu.org/onlinedocs/gcc-4.8.3/libstdc++/manual/manual/status.html#status.iso.2011
"
| Section | Description | Status | Comments
...
| 20.9.4.3 | Type properties | Partial | Missing
is_trivially_copyable, is_trivially_constructible,
is_trivially_default_constructible, is_trivially_copy_constructible,
is_trivially_move_constructible, is_trivially_assignable,
is_trivially_default_assignable, is_trivially_copy_assignable,
is_trivially_move_assignable |
"
Closes !117 - Require C++11 compilation
2023-09-03 04:35:51 -06:00
|
|
|
`#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 1, no if it's undefined.).
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
If Google Test doesn't correctly detect whether pthread is available in your
|
|
|
|
environment, you can force it with
|
2017-04-25 09:19:19 -06:00
|
|
|
|
|
|
|
-DGTEST_HAS_PTHREAD=1
|
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
-DGTEST_HAS_PTHREAD=0
|
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
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 link errors. If you use the
|
|
|
|
CMake script or the deprecated Autotools script, this is taken care of for you.
|
|
|
|
If you use your own build script, you'll need to read your compiler and linker's
|
|
|
|
manual to figure out what flags to add.
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
### As a Shared Library (DLL)
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
Google Test is compact, so most users can build and link it as a static library
|
|
|
|
for the simplicity. You can choose to use Google Test as a shared library (known
|
|
|
|
as a DLL on Windows) if you prefer.
|
2017-04-25 09:19:19 -06:00
|
|
|
|
|
|
|
To compile *gtest* as a shared library, add
|
|
|
|
|
|
|
|
-DGTEST_CREATE_SHARED_LIBRARY=1
|
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
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 it.
|
2017-04-25 09:19:19 -06:00
|
|
|
|
|
|
|
To compile your *tests* that use the gtest shared library, add
|
|
|
|
|
|
|
|
-DGTEST_LINKED_AS_SHARED_LIBRARY=1
|
|
|
|
|
|
|
|
to the compiler flags.
|
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
Note: while the above steps aren't technically necessary today when 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
|
|
|
|
<http://gcc.gnu.org/wiki/Visibility> for details). Therefore you are recommended
|
|
|
|
to always add the above flags when using Google Test as a shared library.
|
|
|
|
Otherwise a future release of Google Test may break your build script.
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
### Avoiding Macro Name Clashes
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
In C++, macros don't obey namespaces. Therefore two libraries that both define a
|
|
|
|
macro of the same name will clash if you `#include` both definitions. In case a
|
|
|
|
Google Test macro clashes with another library, you can force Google Test to
|
|
|
|
rename its macro to avoid the conflict.
|
2017-04-25 09:19:19 -06:00
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
Specifically, if both Google Test and some other code define macro FOO, you can
|
|
|
|
add
|
2017-04-25 09:19:19 -06:00
|
|
|
|
|
|
|
-DGTEST_DONT_DEFINE_FOO=1
|
|
|
|
|
2019-01-20 04:15:48 -07:00
|
|
|
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`. For
|
|
|
|
example, with `-DGTEST_DONT_DEFINE_TEST=1`, you'll need to write
|
2017-04-25 09:19:19 -06:00
|
|
|
|
|
|
|
GTEST_TEST(SomeTest, DoesThis) { ... }
|
|
|
|
|
|
|
|
instead of
|
|
|
|
|
|
|
|
TEST(SomeTest, DoesThis) { ... }
|
|
|
|
|
|
|
|
in order to define a test.
|