blob: fe9cf4e2743d0fb06cfb720b75fa4e195214a48c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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()
|