-
Notifications
You must be signed in to change notification settings - Fork 1
/
tests.xml
44 lines (33 loc) · 1.11 KB
/
tests.xml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0"?>
<!--
Copyright 2014, General Dynamics C4 Systems
SPDX-License-Identifier: GPL-2.0-only
-->
<!--
Regression Specification File
See "misc/regression/tests.xml" for a description of the file
format.
-->
<testsuite cpu-timeout="3600">
<!-- Run the haskell translator. -->
<set>
<test name="haskell-translator" cwd="design" cpu-timeout="600">make design</test>
</set>
<set depends="isabelle Lib">
<!-- Various seL4 specifications. -->
<test name="TakeGrant">make TakeGrant</test>
<set depends="haskell-translator">
<test name="ASpec">make ASpec</test>
<test name="ExecSpec">make ExecSpec</test>
<test name="DSpec">make DSpec</test>
</set>
<set depends="ASpec">
<test name="ASpecDoc">make ASpecDoc</test>
<test name="ASepSpec">make ASepSpec</test>
</set>
</set>
<set>
<!-- Build Haskell kernel code. -->
<test name="HaskellKernel" cwd="haskell" cpu-timeout="1800">./check-newlines.sh && make</test>
</set>
</testsuite>