[OCaml] Re-enable the using_protected unit test
Use the [member-variable] syntax in using_protected_runme.ml as required by the OCaml module's documentation and implementation. Fix the return type for vec_write() in example.h in the OCaml stl example.
This commit is contained in:
parent
96c5a95878
commit
a851e0a9ac
4 changed files with 3 additions and 4 deletions
|
|
@ -41,7 +41,7 @@ let _ = Printf.printf " Square = (%f, %f)\n" (s -> "[x]" () as float) (s -> "
|
|||
|
||||
let _ = print_endline "\nHere are some properties of the shapes:"
|
||||
|
||||
let _ = List.iter (fun o ->
|
||||
let _ = List.iter (fun o ->
|
||||
Printf.printf " %s\n" (repr o);
|
||||
Printf.printf " area = %f\n" (o -> area () as float);
|
||||
Printf.printf " perimeter = %f\n" (o -> perimeter () as float)
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
using std::string;
|
||||
|
||||
double vec_write(std::vector<string> v) {
|
||||
void vec_write(std::vector<string> v) {
|
||||
int n = 0;
|
||||
for( std::vector<string>::iterator i = v.begin();
|
||||
i != v.end();
|
||||
|
|
|
|||
|
|
@ -39,7 +39,6 @@ nested_directors \
|
|||
preproc_constants \
|
||||
smart_pointer_inherit \
|
||||
typedef_mptr \
|
||||
using_protected \
|
||||
|
||||
FAILING_C_TESTS = \
|
||||
enums \
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ open Swig
|
|||
open Using_protected
|
||||
|
||||
let f = new_FooBar C_void
|
||||
let _ = (invoke f) "x" (C_int 3)
|
||||
let _ = (invoke f) "[x]" (C_int 3)
|
||||
|
||||
let _ = if (invoke f) "blah" (C_int 4) <> (C_int 4) then
|
||||
raise (Failure "blah(int)")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue