summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2014-09-18 16:27:48 (GMT)
committerNico Weber <nicolasweber@gmx.de>2014-09-18 16:27:48 (GMT)
commitff2739b118ca8a3c2e0f2709a2852acced0d8407 (patch)
tree54e9f497f30c34513c79a9420c5b7ba28665a025
parent74f1dec00a8a4ce7dccb3b2f95a711925a9b830f (diff)
parenta6b44033c42b7bb4c98d9a66fbb72ad6fc092c18 (diff)
downloadNinja-ff2739b118ca8a3c2e0f2709a2852acced0d8407.zip
Ninja-ff2739b118ca8a3c2e0f2709a2852acced0d8407.tar.gz
Ninja-ff2739b118ca8a3c2e0f2709a2852acced0d8407.tar.bz2
Merge pull request #818 from nico/lesstest
remove more things not needed without gtest
-rw-r--r--.travis.yml2
-rw-r--r--HACKING.md20
2 files changed, 0 insertions, 22 deletions
diff --git a/.travis.yml b/.travis.yml
index 6cb1b5c..4a6dfb0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,6 +2,4 @@ language: cpp
compiler:
- gcc
- clang
-before_install:
- - sudo apt-get update -qq
script: ./bootstrap.py && ./configure.py && ./ninja ninja_test && ./ninja_test --gtest_filter=-SubprocessTest.SetWithLots
diff --git a/HACKING.md b/HACKING.md
index d94882b..ef521e1 100644
--- a/HACKING.md
+++ b/HACKING.md
@@ -50,26 +50,6 @@ patch.
## Testing
-### Installing gtest
-
-The `ninja_test` binary, containing all the tests, depends on the
-googletest (gtest) library.
-
-* On older Ubuntus it'll install as libraries into `/usr/lib`:
-
- apt-get install libgtest
-
-* On newer Ubuntus it's only distributed as source
-
- apt-get install libgtest-dev
- ./configure.py --with-gtest=/usr/src/gtest
-
-* Otherwise you need to download it, unpack it, and pass
- `--with-gtest` to `configure.py`. Get it from [its downloads
- page](http://code.google.com/p/googletest/downloads/list); [this
- direct download link might work
- too](http://googletest.googlecode.com/files/gtest-1.6.0.zip).
-
### Test-driven development
Set your build command to