Changes between Version 8 and Version 9 of DevWikiGardenTest

Show
Ignore:
Timestamp:
10/08/09 04:07:18 (4 years ago)
Author:
robe
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiGardenTest

    v8 v9  
    3737\timing  
    3838}}} 
     39 
     40= Testing subset of functions = 
     41A companion to the full postgis_gardentest.sql.xsl is the postgis_gardentest_subset.sql.xsl.   
     42This version skips the table creation battery of tests and allows you to specify a subset of functions to test. 
     43 
     44It will only test functions whose ids are contains in the fninclude flag. 
     45 
     46 
     47{{{ 
     48xsltproc -o torturetest_subset.sql trunk/doc/xsl/postgis_gardentest_subset.sql.xsl trunk/doc/reference.xml 
     49psql -p 5432 -U postgres -d postgres -c "CREATE DATABASE testpostgis;"  
     50psql -p 5432 -U postgres -d testpostgis -f postgis.sql  
     51psql -p 5432 -U postgres -d testpostgis -f geography.sql 
     52psql -p 5432 -U postgres -d testpostgis -f spatial_ref_sys.sql 
     53psql -p 5432 -U postgres -d testpostgis -f torturetest_subset.sql > torturetest_results.txt  
     54psql -p 5432 -U postgres -d postgres -c "DROP DATABASE testpostgis;"  
     55 
     56}}}