Skip to content

Commit

Permalink
Merge pull request #288 from LPCIC/fix-test-32bits
Browse files Browse the repository at this point in the history
Fix test 32bits
  • Loading branch information
gares authored Nov 22, 2024
2 parents fb0c159 + 44c3919 commit 54be47d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Unreleased
# v2.0.1 (November 2024)

Requires Menhir 20211230 and OCaml 4.08 or above.

- Fix tests on 32 bits systems

# v2.0.0 (November 2024)

Requires Menhir 20211230 and OCaml 4.08 or above.

Expand Down
2 changes: 1 addition & 1 deletion elpi.opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build: [
]

depends: [
"ocaml" {>= "4.08.0" }
"ocaml" {>= "4.13.0" }
"stdlib-shims"
"ppxlib" {>= "0.12.0" }
"menhir" {>= "20211230" }
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/test_bl.ml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
open Elpi_runtime.Bl
let size = 9999999
let size = min Sys.max_array_length 9999999

let test_build () =
Gc.minor (); Gc.major ();
Expand Down

0 comments on commit 54be47d

Please sign in to comment.