llvm-6502/test/Bindings/OCaml/linker.ml
Peter Zotov 7b9a628414 [OCaml] Do not use -warn-error in tests.
This -warn-error flag invariably gets into release tarballs
and breaks builds on distributions that run tests as a part
of release process. The OCaml binding tests are especially
critical, since they often expose lingering toolchain bugs,
and so it is replaced with -w +A (equivalent to -Wall).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242550 91177308-0d34-0410-b5e6-96231b3b80d8
2015-07-17 17:33:23 +00:00

64 lines
1.5 KiB
OCaml

(* RUN: cp %s %T/linker.ml
* RUN: %ocamlc -g -w +A -package llvm.linker -linkpkg %T/linker.ml -o %t
* RUN: %t
* RUN: %ocamlopt -g -w +A -package llvm.linker -linkpkg %T/linker.ml -o %t
* RUN: %t
* XFAIL: vg_leak
*)
(* Note: It takes several seconds for ocamlopt to link an executable with
libLLVMCore.a, so it's better to write a big test than a bunch of
little ones. *)
open Llvm
open Llvm_linker
let context = global_context ()
let void_type = Llvm.void_type context
(* Tiny unit test framework - really just to help find which line is busted *)
let print_checkpoints = false
let suite name f =
if print_checkpoints then
prerr_endline (name ^ ":");
f ()
(*===-- Linker -----------------------------------------------------------===*)
let test_linker () =
let fty = function_type void_type [| |] in
let make_module name =
let m = create_module context name in
let fn = define_function ("fn_" ^ name) fty m in
ignore (build_ret_void (builder_at_end context (entry_block fn)));
m
in
let m1 = make_module "one"
and m2 = make_module "two" in
link_modules m1 m2;
dispose_module m1;
dispose_module m2;
let m1 = make_module "one"
and m2 = make_module "two" in
link_modules m1 m2;
dispose_module m1;
let m1 = make_module "one"
and m2 = make_module "one" in
try
link_modules m1 m2;
failwith "must raise"
with Error _ ->
dispose_module m1;
dispose_module m2
(*===-- Driver ------------------------------------------------------------===*)
let _ =
suite "linker" test_linker