Changes between Initial Version and Version 1 of ToolsTesting


Ignore:
Timestamp:
Nov 26, 2020, 12:18:28 PM (4 years ago)
Author:
mdavis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ToolsTesting

    v1 v1  
     1= Testing Tools =
     2
     3Testing executables are in `bin`
     4
     5== Unit testing ==
     6
     7Individual test classes within the ''test_geos_unit'' suite can be run by calling the ''test_geos_unit'' executable directly:
     8
     9{{{
     10$ bin/test_geos_unit capi::GEOSNode
     11}}}
     12
     13Individual tests within a test class can be run by specifying the test number:
     14
     15{{{
     16$ bin/test_geos_unit capi::GEOSNode 1
     17}}}
     18
     19== XML Tests ===
     20
     21XML tests can be run using ''test_xmltester'':
     22
     23{{{
     24bin/test_xmltester ../geos/tests/xmltester/tests/robust/overlay/TestOverlay-geos-837.xml
     25}}}
     26
     27== Additional Testing Tools ==
     28
     29There are additional tests (typically for performance) which are built, but not run as part of the standard test suite.
     30These can be run from the command line:
     31
     32{{{
     33$ bin/perf_iterated_buffer
     34}}}