[OCaml] Fix and re-enable the string_simple, minherit, and unions tests

copy_string() is a macro in the OCaml C API, so rename the function
to copy_str(). Add a runtime test.

The minherit runtime test was fixed by b64d685.

Use the proper syntax for accessing member variables in
unions_runme.ml
This commit is contained in:
Zackery Spytz 2019-01-13 17:28:00 -07:00
commit 83df4e8ed6
7 changed files with 26 additions and 20 deletions

View file

@ -71,7 +71,7 @@ namespace std {
let array_to_vector v argcons array =
for i = 0 to (Array.length array) - 1 do
(invoke v) "set" (C_list [ C_int i ; (argcons array.(i)) ])
ignore ((invoke v) "set" (C_list [ C_int i ; (argcons array.(i)) ]))
done ;
v