diff options
Diffstat (limited to 'test/ocaml/string_equality')
| -rw-r--r-- | test/ocaml/string_equality/expect | 1 | ||||
| -rw-r--r-- | test/ocaml/string_equality/string_equality.sail | 3 | ||||
| -rw-r--r-- | test/ocaml/string_equality/test.isail | 6 |
3 files changed, 10 insertions, 0 deletions
diff --git a/test/ocaml/string_equality/expect b/test/ocaml/string_equality/expect new file mode 100644 index 00000000..27ba77dd --- /dev/null +++ b/test/ocaml/string_equality/expect @@ -0,0 +1 @@ +true diff --git a/test/ocaml/string_equality/string_equality.sail b/test/ocaml/string_equality/string_equality.sail new file mode 100644 index 00000000..568052cd --- /dev/null +++ b/test/ocaml/string_equality/string_equality.sail @@ -0,0 +1,3 @@ +val main : unit -> unit + +function main () = if "test" == "test" then print("true") else print("false") diff --git a/test/ocaml/string_equality/test.isail b/test/ocaml/string_equality/test.isail new file mode 100644 index 00000000..b3eb5d41 --- /dev/null +++ b/test/ocaml/string_equality/test.isail @@ -0,0 +1,6 @@ +initialize_registers() +:run +:output result +main() +:run +:quit
\ No newline at end of file |
