this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #27114 from jmid/opam-publish-qcheck-multicoretests-util.0.5

3 packages from ocaml-multicore/multicoretests at 0.5

authored by

Marcello Seri and committed by
GitHub
37230f68 a4ff3672

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