7d40c2847a61e2b629cdb1d7bf75020460c53419
[oota-llvm.git] / test / Bindings / Ocaml / ext_exc.ml
1 (* RUN: cp %s %T/ext_exc.ml
2  * RUN: %ocamlcomp -g -warn-error A -package llvm.bitreader -linkpkg %T/ext_exc.ml -o %t
3  * RUN: %t
4  * XFAIL: vg_leak
5  *)
6
7 let context = Llvm.global_context ()
8
9 (* this used to crash, we must not use 'external' in .mli files, but 'val' if we
10  * want the let _ bindings executed, see http://caml.inria.fr/mantis/view.php?id=4166 *)
11 let _ =
12     try
13         ignore (Llvm_bitreader.get_module context (Llvm.MemoryBuffer.of_stdin ()))
14     with
15     Llvm_bitreader.Error _ -> ();;
16 let _ =
17     try
18         ignore (Llvm.MemoryBuffer.of_file "/path/to/nonexistent/file")
19     with
20     Llvm.IoError _ -> ();;