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 45 46 47 48 49 50 51 52 53 54 55 56
|
(library
(name tester)
(libraries lwt lwttester)
(modules
(:standard
\
main
dummy
ocaml_runtime_exc_1
ocaml_runtime_exc_2
ocaml_runtime_exc_3
ocaml_runtime_exc_4
ocaml_runtime_exc_5
ocaml_runtime_exc_6)))
(executable
(name dummy)
(modules dummy)
(libraries unix))
(test
(name main)
(package lwt)
(libraries lwttester tester)
(modules main)
(deps bytes_io_data %{exe:dummy.exe}))
(test
(name ocaml_runtime_exc_1)
(libraries lwt lwt.unix)
(modules ocaml_runtime_exc_1))
(test
(name ocaml_runtime_exc_2)
(libraries lwt lwt.unix)
(modules ocaml_runtime_exc_2))
(test
(name ocaml_runtime_exc_3)
(libraries lwt lwt.unix)
(modules ocaml_runtime_exc_3))
(test
(name ocaml_runtime_exc_4)
(libraries lwt lwt.unix)
(modules ocaml_runtime_exc_4))
(test
(name ocaml_runtime_exc_5)
(libraries lwt lwt.unix)
(modules ocaml_runtime_exc_5))
(test
(name ocaml_runtime_exc_6)
(libraries lwt lwt.unix)
(modules ocaml_runtime_exc_6))
|