aboutsummaryrefslogtreecommitdiff
path: root/nad/testflaky
diff options
context:
space:
mode:
authorBas Couwenberg <sebastic@xs4all.nl>2015-09-06 23:09:57 +0200
committerBas Couwenberg <sebastic@xs4all.nl>2015-09-06 23:09:57 +0200
commit9e468dc6fc3b3388f73c449924b54aa5b44f4333 (patch)
tree27ca938a27963a34aeb9896180a8e99072b71efd /nad/testflaky
parent5d2af3a89be0898458e4f0fe272affc36642d304 (diff)
downloadPROJ-9e468dc6fc3b3388f73c449924b54aa5b44f4333.tar.gz
PROJ-9e468dc6fc3b3388f73c449924b54aa5b44f4333.zip
Fix 'flaky' typo, causing `make dist-all` failure.
nad/Makefile.am uses nad/testflaky, but the file was named nad/testflakey.
Diffstat (limited to 'nad/testflaky')
-rwxr-xr-xnad/testflaky74
1 files changed, 74 insertions, 0 deletions
diff --git a/nad/testflaky b/nad/testflaky
new file mode 100755
index 00000000..2d57d395
--- /dev/null
+++ b/nad/testflaky
@@ -0,0 +1,74 @@
+:
+# Script to do some testing of flakey transformation that do not depend
+# on datum files.
+#
+#
+NAD_DIR=`dirname $0`
+EXE=$1
+
+usage()
+{
+ echo "Usage: ${0} <path to 'cs2cs' program>"
+ echo
+ exit 1
+}
+
+if test -z "${EXE}"; then
+ EXE=../src/cs2cs
+fi
+
+if test ! -x ${EXE}; then
+ echo "*** ERROR: Can not find '${EXE}' program!"
+ exit 1
+fi
+
+echo "============================================"
+echo "Running ${0} using ${EXE}:"
+echo "============================================"
+
+OUT=tf_out
+#EXE=../src/cs2cs
+#
+echo "doing tests into file ${OUT}, please wait"
+rm -f ${OUT}
+#
+echo "Test healpix inverse projection on sphere" >> ${OUT}
+$EXE +proj=latlong +a=1 +lon_0=0 \
+ +to +proj=healpix +a=1 +lon_0=0 -f '%.'5'f' -I\
+ -E >>${OUT} <<EOF
+0 0.7853981633974483
+-1.5707963267948966 0
+EOF
+$EXE +proj=latlong +a=5 \
+ +to +proj=healpix +a=5 -f '%.'5'f' -I\
+ -E >>${OUT} <<EOF
+0.0 0.0
+0.0 3.9269908169872414
+0.0 -3.9269908169872414
+7.853981633974483 0.0
+-7.853981633974483 0.0
+-15.707963267948966 0.0
+-11.780972450961723 7.853981633974483
+-11.780972450961723 -7.853981633974483
+1.437378399445537 5.364369216432778
+1.437378399445537 -5.364369216432778
+EOF
+
+##############################################################################
+# Done!
+# do 'diff' with distribution results
+echo "diff ${OUT} with ${OUT}.dist"
+diff -b ${OUT} ${NAD_DIR}/${OUT}.dist
+if [ $? -ne 0 ] ; then
+ echo ""
+ echo "PROBLEMS HAVE OCCURED"
+ echo "test file ${OUT} saved"
+ echo
+ exit 100
+else
+ echo "TEST OK"
+ echo "test file ${OUT} removed"
+ echo
+ /bin/rm -f ${OUT}
+ exit 0
+fi