diff options
| author | Frank Warmerdam <warmerdam@pobox.com> | 2010-08-21 17:34:17 +0000 |
|---|---|---|
| committer | Frank Warmerdam <warmerdam@pobox.com> | 2010-08-21 17:34:17 +0000 |
| commit | 5ac3e3b558a3baeb2d9ee14e33e743541e12ec0a (patch) | |
| tree | a3a538163734deac88c91db96b2e6ea23c0845d1 | |
| parent | 195e3f3d3d460a719495dd5c2b1443e1d0dcd1d0 (diff) | |
| download | PROJ-5ac3e3b558a3baeb2d9ee14e33e743541e12ec0a.tar.gz PROJ-5ac3e3b558a3baeb2d9ee14e33e743541e12ec0a.zip | |
use ../src/cs2cs for testing by default
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@1884 4e78687f-474d-0410-85f9-8d5e500ac6b2
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rwxr-xr-x | nad/test27 | 13 | ||||
| -rwxr-xr-x | nad/test83 | 13 | ||||
| -rwxr-xr-x | nad/testIGNF | 13 | ||||
| -rwxr-xr-x | nad/testdatumfile | 13 | ||||
| -rwxr-xr-x | nad/testntv2 | 13 | ||||
| -rwxr-xr-x | nad/testvarious | 13 |
7 files changed, 40 insertions, 42 deletions
@@ -1,3 +1,7 @@ +2010-08-21 Frank Warmerdam <warmerdam@pobox.com> + + * nad/test*: default to using ../src/cs2cs + 2010-07-31 Frank Warmerdam <warmerdam@pobox.com> * nad/epsg: updated from GDAL. Adds TMSO projection definitions, @@ -16,13 +16,12 @@ usage() } if test -z "${EXE}"; then - echo "*** ERROR: Missing path to 'proj' program." - usage -else - if test ! -x ${EXE}; then - echo "*** ERROR: Can not find '${EXE}' program!" - exit 1 - fi + EXE=../src/cs2cs +fi + +if test ! -x ${EXE}; then + echo "*** ERROR: Can not find '${EXE}' program!" + exit 1 fi echo "============================================" @@ -17,13 +17,12 @@ usage() } if test -z "${EXE}"; then - echo "*** ERROR: Missing path to 'proj' program." - usage -else - if test ! -x ${EXE}; then - echo "*** ERROR: Can not find '${EXE}' program!" - exit 1 - fi + EXE=../src/cs2cs +fi + +if test ! -x ${EXE}; then + echo "*** ERROR: Can not find '${EXE}' program!" + exit 1 fi echo "============================================" diff --git a/nad/testIGNF b/nad/testIGNF index 3de07548..15226774 100755 --- a/nad/testIGNF +++ b/nad/testIGNF @@ -20,13 +20,12 @@ usage() } if test -z "${EXE}"; then - echo "*** ERROR: Missing path to 'cs2cs' program." - usage -else - if test ! -x ${EXE}; then - echo "*** ERROR: Can not find '${EXE}' program!" - exit 1 - fi + EXE=../src/cs2cs +fi + +if test ! -x ${EXE}; then + echo "*** ERROR: Can not find '${EXE}' program!" + exit 1 fi echo "============================================" diff --git a/nad/testdatumfile b/nad/testdatumfile index 4a647ef3..0285e4cf 100755 --- a/nad/testdatumfile +++ b/nad/testdatumfile @@ -13,13 +13,12 @@ usage() } if test -z "${EXE}"; then - echo "*** ERROR: Missing path to 'cs2cs' program." - usage -else - if test ! -x ${EXE}; then - echo "*** ERROR: Can not find '${EXE}' program!" - exit 1 - fi + EXE=../src/cs2cs +fi + +if test ! -x ${EXE}; then + echo "*** ERROR: Can not find '${EXE}' program!" + exit 1 fi echo "============================================" diff --git a/nad/testntv2 b/nad/testntv2 index 096f4bbb..4a4cfb28 100755 --- a/nad/testntv2 +++ b/nad/testntv2 @@ -13,13 +13,12 @@ usage() } if test -z "${EXE}"; then - echo "*** ERROR: Missing path to 'cs2cs' program." - usage -else - if test ! -x ${EXE}; then - echo "*** ERROR: Can not find '${EXE}' program!" - exit 1 - fi + EXE=../src/cs2cs +fi + +if test ! -x ${EXE}; then + echo "*** ERROR: Can not find '${EXE}' program!" + exit 1 fi echo "============================================" diff --git a/nad/testvarious b/nad/testvarious index e02b4d7b..ce2ed2a5 100755 --- a/nad/testvarious +++ b/nad/testvarious @@ -13,13 +13,12 @@ usage() } if test -z "${EXE}"; then - echo "*** ERROR: Missing path to 'cs2cs' program." - usage -else - if test ! -x ${EXE}; then - echo "*** ERROR: Can not find '${EXE}' program!" - exit 1 - fi + EXE=../src/cs2cs +fi + +if test ! -x ${EXE}; then + echo "*** ERROR: Can not find '${EXE}' program!" + exit 1 fi echo "============================================" |
