aboutsummaryrefslogtreecommitdiffstats
path: root/test/Bindings/Ocaml/ext_exc.ml
diff options
context:
space:
mode:
Diffstat (limited to 'test/Bindings/Ocaml/ext_exc.ml')
-rw-r--r--test/Bindings/Ocaml/ext_exc.ml20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/Bindings/Ocaml/ext_exc.ml b/test/Bindings/Ocaml/ext_exc.ml
deleted file mode 100644
index 9afc3c3..0000000
--- a/test/Bindings/Ocaml/ext_exc.ml
+++ /dev/null
@@ -1,20 +0,0 @@
-(* RUN: rm -rf %t.builddir
- * RUN: mkdir -p %t.builddir
- * RUN: cp %s %t.builddir
- * RUN: %ocamlopt -warn-error A llvm.cmxa llvm_bitreader.cmxa llvm_executionengine.cmxa %t.builddir/ext_exc.ml -o %t
- * RUN: %t </dev/null
- * XFAIL: vg_leak
- *)
-let context = Llvm.global_context ()
-(* this used to crash, we must not use 'external' in .mli files, but 'val' if we
- * want the let _ bindings executed, see http://caml.inria.fr/mantis/view.php?id=4166 *)
-let _ =
- try
- ignore (Llvm_bitreader.get_module context (Llvm.MemoryBuffer.of_stdin ()))
- with
- Llvm_bitreader.Error _ -> ();;
-let _ =
- try
- ignore (Llvm.MemoryBuffer.of_file "/path/to/nonexistent/file")
- with
- Llvm.IoError _ -> ();;