PR#5757: GC compaction bug (crash)

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12914 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Damien Doligez 2012-09-10 10:27:57 +00:00
parent be4cf7d973
commit 011a701579
3 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,4 @@
MAIN_MODULE=pr5757
include ../../../makefiles/Makefile.one
include ../../../makefiles/Makefile.common

View File

@ -0,0 +1,5 @@
Random.init 3;;
for i = 0 to 100_000 do
ignore (String.create (Random.int 1_000_000))
done;;
Printf.printf "hello world\n";;

View File

@ -0,0 +1 @@
hello world