--- sio_test.c 2003/02/06 12:49:16 1.15
+++ sio_test.c 2003/02/06 12:50:53 1.16
@@ -140,9 +140,6 @@
if (child == 0) {
int result;
-
- sleep(1);
-
close(pd[1]);
result = (*server)(NULL, pd[0], wcount);
close(pd[0]);
@@ -1122,13 +1119,9 @@
int result;
sa_t *sa_conn;
sa_addr_t *saa_c;
-
- sleep(1);
-
rc = sa_accept(sa_server, &saa_c, &sa_conn);
if (rc != SA_OK) exit(2);
rc = sa_addr_destroy(saa_c);
-
rc = sa_shutdown(sa_server, "rw");
rc = sa_shutdown(sa_conn, "r");
result = test_sio_sa_write(NULL, sa_conn, wcount);
@@ -1390,7 +1383,7 @@
ts_suite_test(ts, test_sio_sa, "stream I/O socket abstraction");
#endif
#if ENABLE_BIO
- ts_suite_test(ts, test_sio_bio, "stream I/O ssl adapter");
+ ts_suite_test(ts, test_sio_bio, "stream I/O bio adapter");
#endif
n = ts_suite_run(ts);
ts_suite_free(ts);
|