summaryrefslogtreecommitdiff
path: root/testsuite/tests/lib-unix/common/getaddrinfo.ml
blob: b140ef914357ebf0ecfc8d087905899f7dad5dcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(* TEST
* hasunix
include unix
** bytecode
** native
*)

let () =
  let x = Unix.getaddrinfo "\000" "" [] in
  Gc.full_major ();
  assert (x = []);;

let () =
  let x = Unix.getaddrinfo "" "\000" [] in
  Gc.full_major ();
  assert (x = []);;