mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2026-01-23 01:26:41 -05:00
25 lines
435 B
Text
25 lines
435 B
Text
; emit tests
|
|
|
|
(executable
|
|
(name emit_tests)
|
|
(modules emit_tests)
|
|
(flags :standard -warn-error -a+8)
|
|
(libraries containers containers.codegen))
|
|
|
|
(rule
|
|
(targets test_bitfield.ml test_bitfield.mli)
|
|
(action
|
|
(run ./emit_tests.exe)))
|
|
|
|
; run tests
|
|
|
|
(executables
|
|
(names test_bitfield)
|
|
(modules test_bitfield)
|
|
(flags :standard -warn-error -a+8)
|
|
(libraries containers))
|
|
|
|
(rule
|
|
(alias runtest)
|
|
(action
|
|
(run ./test_bitfield.exe)))
|