blob: f92e10397bf84fd6f9c1559384e83c2d7b3081b1 (
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
|
####################
####################
IMPORT "test_common.sm"
# This structure is meant to serialize the regtests so that nothing else
# is going on at the same time. The regtests can consume all the CPUs.
TABLE test_run_x HOST arzach cadeau banana
CMD test2.7 RUN "test_rt x 2.7"
AFTER stamp/x
AFTER test_setup/okify
AFTER test_setup/*
AFTER OPT test_run_dev/*
TABLE test_run_x HOST arzach
CMD contact RUN "test_contact"
AFTER stamp/x
AFTER test2.7
TABLE test_import HOST ssb
CMD x.import RUN "test_import irafx"
AFTER *:test_run_x/*
CMD x.expect RUN "test_expected irafx"
AFTER test_import/x.import
|