summaryrefslogtreecommitdiff
path: root/src/tcp/__tcp_properties__.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/tcp/__tcp_properties__.cc')
-rw-r--r--src/tcp/__tcp_properties__.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tcp/__tcp_properties__.cc b/src/tcp/__tcp_properties__.cc
index b701cb2..4ca11e7 100644
--- a/src/tcp/__tcp_properties__.cc
+++ b/src/tcp/__tcp_properties__.cc
@@ -97,7 +97,7 @@ Undocumented internal function.\n\
%!shared ip
%! ip = resolvehost("www.octave.org", "address");
-%!test
+%!xtest
%! # test get
%! a = tcp (ip, 80);
%! assert (__tcp_properties__ (a,"type"), "tcp");
@@ -110,7 +110,7 @@ Undocumented internal function.\n\
%! tcp_close (a);
%! assert (__tcp_properties__ (a,"status"), "closed");
-%!test
+%!xtest
%! # test set
%! a = tcp(ip, 80);
%! __tcp_properties__ (a, 'name', "mytest");
@@ -118,7 +118,7 @@ Undocumented internal function.\n\
%! fail ("__tcp_properties__ (a,'invalid', 1)", "invalid property name");
%! tcp_close (a);
-%!test
+%!xtest
%! # test flush
%! a = tcp(ip, 80);
%! __tcp_properties__ (a, 'flush', 0);
@@ -132,7 +132,7 @@ Undocumented internal function.\n\
%!error <wrong number of arguments> __tcp_properties__ (1)
-%!test
+%!xtest
%! a = tcp (ip, 80);
%! fail ("__tcp_properties__ (a, 'name', 'test', 0)", "wrong number of arguments");
%! tcp_close (a);