Skip to content

Commit

Permalink
Add a test for the JavaScript case
Browse files Browse the repository at this point in the history
  • Loading branch information
dra27 committed Mar 15, 2021
1 parent 9352d81 commit efd6c45
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions testsuite/tests/lib-random/int63.ml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
(* TEST *)

(* Ensure that a bound which is negative on 31-bit OCaml but positive on 32-bit
OCaml produces the same result on 64-bit OCaml. *)
let bound = 0x6FFFFFFF in
if bound < 0 then (* 31-bit integers *)
print_endline "6beb775a"
else (* 32 or 64-bit integers *)
let s = Random.State.make [| 42 |] in
Printf.printf "%x\n" (Random.State.int63 s bound)
1 change: 1 addition & 0 deletions testsuite/tests/lib-random/int63.reference
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6beb775a

0 comments on commit efd6c45

Please sign in to comment.