[Tile-serving] [osm2pgsql] Add cmake build scripts and appveyor.yml (#460)
alex85k
notifications at github.com
Mon Oct 26 03:58:37 UTC 2015
>With a standard build (cmake .., no other options), how do I
>Build the tests, but not run them
>Run all the tests
>Run a test
No tests targets are generated until ``cmake .. -DBUILD_TESTS=ON``. If we want them to build under special target or run, EXCLUDE_FROM_ALL can be used.
http://stackoverflow.com/questions/3290280/cmake-and-ctest-how-to-make-target-nightly-actually-build-the-tests
Running all tests:
```
make test
(calls ctest)
```
Running custom test:
```
make test ARGS="-VV -L NoDB" # run by label
make test ARGS="-VV -R hstore" # run by substring of test name
```
---
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/osm2pgsql/pull/460#issuecomment-151018632
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstreetmap.org/pipermail/tile-serving/attachments/20151025/048a60d8/attachment.html>
More information about the Tile-serving
mailing list