aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/README.md
diff options
context:
space:
mode:
authorCarlos O'Ryan <coryan@google.com>2017-12-11 19:33:27 -0500
committerCarlos O'Ryan <coryan@google.com>2017-12-11 19:33:27 -0500
commit23a014ab578682ae11c3e68c77a1cde3b77f7a90 (patch)
tree4be276a49a00388a46ecbff0f52161af509aceb8 /googletest/README.md
parentc82cd5e41e3755fc9ed65912ca3acaae69921dbb (diff)
downloadgoogletest-23a014ab578682ae11c3e68c77a1cde3b77f7a90.tar.gz
googletest-23a014ab578682ae11c3e68c77a1cde3b77f7a90.tar.bz2
googletest-23a014ab578682ae11c3e68c77a1cde3b77f7a90.zip
Refactor docs about contributions to CONTRIBUTING.md.
Per the review comments.
Diffstat (limited to 'googletest/README.md')
-rw-r--r--googletest/README.md35
1 files changed, 0 insertions, 35 deletions
diff --git a/googletest/README.md b/googletest/README.md
index f273a7de..225aba24 100644
--- a/googletest/README.md
+++ b/googletest/README.md
@@ -358,38 +358,3 @@ instead of
TEST(SomeTest, DoesThis) { ... }
in order to define a test.
-
-## Developing Google Test ##
-
-This section discusses how to make your own changes to Google Test.
-
-### Testing Google Test Itself ###
-
-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.
-For that you can use CMake:
-
- mkdir mybuild
- cd mybuild
- cmake -Dgtest_build_tests=ON ${GTEST_DIR}
-
-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
-able to find Python (`Could NOT find PythonInterp (missing:
-PYTHON_EXECUTABLE)`), try telling it explicitly where your Python
-executable can be found:
-
- 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,
-this is usually done by 'make'. To run the tests, do
-
- make test
-
-All tests should pass.
-
-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
-corresponding .pump files instead and run the pump.py Python script to
-regenerate them. You can find pump.py in the [scripts/](scripts/) directory.
-Read the [Pump manual](docs/PumpManual.md) for how to use it.