diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-08-05 16:22:51 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-08-05 16:22:51 +0000 |
commit | cf46733632c7279a9fd0fe6ce26f9185a4ae82a9 (patch) | |
tree | da27775a2161723ef342e91af41a8b51fedef405 /doc/programmer/gtest-guide.txt | |
parent | bb0ef45f7c46b0ae221b26265ef98a768c33f820 (diff) | |
download | subversion-tarball-cf46733632c7279a9fd0fe6ce26f9185a4ae82a9.tar.gz |
subversion-1.9.7HEADsubversion-1.9.7master
Diffstat (limited to 'doc/programmer/gtest-guide.txt')
-rw-r--r-- | doc/programmer/gtest-guide.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/programmer/gtest-guide.txt b/doc/programmer/gtest-guide.txt new file mode 100644 index 0000000..225690c --- /dev/null +++ b/doc/programmer/gtest-guide.txt @@ -0,0 +1,30 @@ +Googlemock and Googletest Suite for Subversion +--------------------------------------------- + +Googlemock and Googletest are external packages that are downloaded +and compiled on request, as part of regular compilations. + +Googlemock is available here: + + https://code.google.com/p/googlemock/ + +The source packages already include Googletest, which is available +here: + + https://code.google.com/p/googletest/ + +Subversion uses Googlemock and Googletest for the C++HL test suite. + + + +To configure Subversion to use Googlemock, type + + ./get-dep.sh gmock + +This will download Googlemock and put the fused source into the +'gmock-fused' directory. Once it's there, configure will pick it up +automatically (but you do have to re-run autogen.sh and configure). + +You can disable building Googlemock (and hence the C++HL test suite) +with the --disable-gmock configure option. This will tell configure to +ignore the gmock-fused directory. |