this repo has no description
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "A multicore testing library for OCaml"
4description: """
5A testing library based on QCheck to test interface behaviour under parallel
6usage. Lin will generate and run random parallel tests and check the observed
7behaviour for sequential consistency, that is, whether they can be linearized
8and explained by some sequential interleaving."""
9maintainer: ["Jan Midtgaard <mail@janmidtgaard.dk>"]
10authors: ["Jan Midtgaard" "Olivier Nicole" "Nicolas Osborne" "Samuel Hym"]
11license: "BSD-2-clause"
12tags: [
13 "test"
14 "property"
15 "qcheck"
16 "quickcheck"
17 "parallelism"
18 "sequential consistency"
19]
20homepage: "https://github.com/ocaml-multicore/multicoretests"
21bug-reports: "https://github.com/ocaml-multicore/multicoretests/issues"
22depends: [
23 "dune" {>= "3.0"}
24 "base-domains"
25 "qcheck-core" {>= "0.20"}
26 "qcheck-multicoretests-util" {= version}
27 "ppx_deriving" {with-test & >= "5.2.1"}
28 "odoc" {with-doc}
29]
30build: [
31 ["dune" "subst"] {dev}
32 [
33 "dune"
34 "build"
35 "-p"
36 name
37 "-j"
38 jobs
39 "@install"
40 "@runtest" {with-test}
41 "@doc" {with-doc}
42 ]
43]
44dev-repo: "git+https://github.com/ocaml-multicore/multicoretests.git"
45url {
46 src:
47 "https://github.com/ocaml-multicore/multicoretests/archive/0.1.1.tar.gz"
48 checksum: [
49 "md5=897d5fda34450109e64ef2b589314d74"
50 "sha512=b93e998dbb6a48d9ced032a9fe54ecd5e092dbac911a815e0f5c565d0dbccc44277e6f56895a0d1df5d72fe32d18db61b1101f81f2fe4675f2e5a1b977ad4ef2"
51 ]
52}