1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/test/Bindings/OCaml/passmgr_builder.ml
Kuba Mracek e659840bcd [llvm] Get rid of "%T" expansions
The %T lit expansion expands to a common directory shared between all the tests in the same directory, which is unexpected and unintuitive, and more importantly, it's been a source of subtle race conditions and flaky tests. In https://reviews.llvm.org/D35396, it was agreed that it would be best to simply ban %T and only keep %t, which is unique to each test. When a test needs a temporary directory, it can just create one using mkdir %t.

This patch removes %T in llvm.

Differential Revision: https://reviews.llvm.org/D36495

llvm-svn: 310953
2017-08-15 20:29:24 +00:00

65 lines
2.0 KiB
OCaml

(* RUN: rm -rf %t && mkdir -p %t && cp %s %t/passmgr_builder.ml
* RUN: %ocamlc -g -w +A -package llvm.passmgr_builder -linkpkg %t/passmgr_builder.ml -o %t/executable
* RUN: %t/executable %t/bitcode.bc
* RUN: %ocamlopt -g -w +A -package llvm.passmgr_builder -linkpkg %t/passmgr_builder.ml -o %t/executable
* RUN: %t/executable %t/bitcode.bc
* 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_passmgr_builder
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 ()
(*===-- Fixture -----------------------------------------------------------===*)
let filename = Sys.argv.(1)
let m = create_module context filename
(*===-- Pass Manager Builder ----------------------------------------------===*)
let test_pmbuilder () =
let (++) x f = ignore (f x); x in
let module_passmgr = PassManager.create () in
let func_passmgr = PassManager.create_function m in
let lto_passmgr = PassManager.create () in
ignore (Llvm_passmgr_builder.create ()
++ set_opt_level 3
++ set_size_level 1
++ set_disable_unit_at_a_time false
++ set_disable_unroll_loops false
++ use_inliner_with_threshold 10
++ populate_function_pass_manager func_passmgr
++ populate_module_pass_manager module_passmgr
++ populate_lto_pass_manager lto_passmgr
~internalize:false ~run_inliner:false);
Gc.compact ();
PassManager.dispose module_passmgr;
PassManager.dispose func_passmgr;
PassManager.dispose lto_passmgr
(*===-- Driver ------------------------------------------------------------===*)
let _ =
suite "pass manager builder" test_pmbuilder;
dispose_module m