aboutsummaryrefslogtreecommitdiff
path: root/vo/votest/votest.cl
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 /vo/votest/votest.cl
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'vo/votest/votest.cl')
-rw-r--r--vo/votest/votest.cl29
1 files changed, 29 insertions, 0 deletions
diff --git a/vo/votest/votest.cl b/vo/votest/votest.cl
new file mode 100644
index 00000000..fe9cf4e2
--- /dev/null
+++ b/vo/votest/votest.cl
@@ -0,0 +1,29 @@
+#{ VOTEST -- VO Unit Test Sub-Package
+
+# Logical directories.
+reset data = "votest$data/"
+reset tests = "votest$tests/"
+
+
+package votest
+
+# Compute the host-specific path to the data directory.
+votest.data_path = osfn ("data$")
+
+# Compiled tasks.
+
+# Script tasks.
+task test = votest$test.cl
+
+task run_test = votest$run_test.cl
+task mkout = votest$mkout.cl
+task mkcache = votest$mkcache.cl
+
+
+# Foreign (Java) tasks.
+
+# Hidden tasks.
+hidetask run_test, mkout, mkcache
+
+
+clbye()