[llvm] r224802 - [OCaml] PR21901: Update tests.
Peter Zotov
whitequark at whitequark.org
Tue Dec 23 17:58:45 PST 2014
Author: whitequark
Date: Tue Dec 23 19:58:45 2014
New Revision: 224802
URL: http://llvm.org/viewvc/llvm-project?rev=224802&view=rev
Log:
[OCaml] PR21901: Update tests.
This finishes the fix partially applied by r224782.
Modified:
llvm/trunk/test/Bindings/OCaml/linker.ml
Modified: llvm/trunk/test/Bindings/OCaml/linker.ml
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Bindings/OCaml/linker.ml?rev=224802&r1=224801&r2=224802&view=diff
==============================================================================
--- llvm/trunk/test/Bindings/OCaml/linker.ml (original)
+++ llvm/trunk/test/Bindings/OCaml/linker.ml Tue Dec 23 19:58:45 2014
@@ -39,7 +39,7 @@ let test_linker () =
let m1 = make_module "one"
and m2 = make_module "two" in
- link_modules m1 m2 Mode.PreserveSource;
+ link_modules m1 m2;
dispose_module m1;
dispose_module m2;
@@ -51,7 +51,7 @@ let test_linker () =
let m1 = make_module "one"
and m2 = make_module "one" in
try
- link_modules m1 m2 Mode.PreserveSource;
+ link_modules m1 m2;
failwith "must raise"
with Error _ ->
dispose_module m1;
More information about the llvm-commits
mailing list