28 lines
403 B
Text
28 lines
403 B
Text
|
|
(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})))
|