Skip to content

Commit d16c314

Browse files
Fix memory leak (#14)
* Fix continuations leak in processes cleanup * Mark alcotest with-test
1 parent c74d8a6 commit d16c314

File tree

10 files changed

+299
-141
lines changed

10 files changed

+299
-141
lines changed

.ocamlformat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
profile = default
2+
version = 0.24.1

dscheck.opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ depends: [
1111
"dune" {>= "2.9"}
1212
"containers"
1313
"oseq"
14+
"alcotest" {>= "1.6.0" & with-test}
1415
"odoc" {with-doc}
1516
]
1617
build: [

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
(package
1212
(name dscheck)
1313
(synopsis "Traced Atomics")
14-
(depends (ocaml (>= 5.0.0)) dune containers oseq (alcotest (>= 1.6.0))))
14+
(depends (ocaml (>= 5.0.0)) dune containers oseq (alcotest (and (>= 1.6.0) :with-test))))
1515

1616

src/dune

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
(library
2-
(public_name dscheck)
3-
(libraries containers oseq))
2+
(public_name dscheck)
3+
(libraries containers oseq))

0 commit comments

Comments
 (0)