File: dune

package info (click to toggle)
ocaml-eqaf 0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 364 kB
  • sloc: ml: 1,562; ansic: 103; makefile: 7
file content (27 lines) | stat: -rw-r--r-- 403 bytes parent folder | download | duplicates (2)
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
(executable
 (name test)
 (modules test)
 (libraries alcotest eqaf))

(rule
 (alias runtest)
 (locks singleton)
 (package eqaf)
 (deps
  (:test test.exe))
 (action
  (run %{test} --color=always)))

(executable
 (name test_branch)
 (modules test_branch)
 (libraries clock unix eqaf))

(rule
 (alias runtest)
 (locks singleton)
 (package eqaf)
 (deps
  (:test test_branch.exe))
 (action
  (run %{test})))