aboutsummaryrefslogtreecommitdiff
path: root/sys/gio/ncarutil/tests/ezytst.x
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /sys/gio/ncarutil/tests/ezytst.x
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'sys/gio/ncarutil/tests/ezytst.x')
-rw-r--r--sys/gio/ncarutil/tests/ezytst.x39
1 files changed, 39 insertions, 0 deletions
diff --git a/sys/gio/ncarutil/tests/ezytst.x b/sys/gio/ncarutil/tests/ezytst.x
new file mode 100644
index 00000000..b3ac1cb1
--- /dev/null
+++ b/sys/gio/ncarutil/tests/ezytst.x
@@ -0,0 +1,39 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+define DUMMY 6
+
+include <error.h>
+include <gset.h>
+include <ctype.h>
+
+# Test NCAR routine AUTOGRAPH - EZXY, EZMXY etc.
+
+task ezytst = t_ezytst
+
+procedure t_ezytst()
+
+char device[SZ_FNAME], title[SZ_LINE]
+int wkid, i
+real y_vector[512]
+pointer gp, gopen()
+
+begin
+ call clgstr ("device", device, SZ_FNAME)
+
+ call gopks (STDERR)
+ wkid = 1
+ gp = gopen (device, NEW_FILE, STDGRAPH)
+ call gopwk (wkid, DUMMY, gp)
+ call gacwk (wkid)
+
+ # Construct vector to be plotted
+ do i = 1, 512
+ y_vector[i] = i
+
+ call strcpy ("TIMING TEST: 512 POINT VECTOR$", title, SZ_LINE)
+ call ezy (y_vector(1), 512, 'Timing Test: 512 Point Vector$')
+
+ call gdawk (wkid)
+ call gclwk (wkid)
+ call gclks ()
+end