diff options
| author | Howard Butler <howard@hobu.co> | 2016-08-22 16:40:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-22 16:40:24 -0500 |
| commit | da2d678c387ba76704824360dc52771c29d94693 (patch) | |
| tree | f74f79b400855cd014cd0e91e2a9c0e0c43235a3 /.travis.yml | |
| parent | e103f3f962e5ddc6c837f4b8b0bcdc437b5f52d1 (diff) | |
| parent | 6a921265db9ff12a263ff1a88118a69a65b7a2df (diff) | |
| download | PROJ-4.9.3.tar.gz PROJ-4.9.3.zip | |
Merge pull request #405 from kbevers/selftest-compile-flag4.9.3
Changed self-test build behaviour from opt-out to opt-in
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index a476f875..a4378d9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -91,9 +91,9 @@ install: - cd .. # autoconf build with grids and coverage - if [ $TRAVIS_OS_NAME == "osx" ]; then - CFLAGS="--coverage" ./configure; + CFLAGS="-DPJ_SELFTEST --coverage" ./configure; else - CFLAGS="--coverage" LDFLAGS="-lgcov" ./configure; + CFLAGS="-DPJ_SELFTEST --coverage" LDFLAGS="-lgcov" ./configure; fi - make -j3 - make check |
