source: rtems/testsuites/samples/loopback/README @ 3a9d9e1

4.115
Last change on this file since 3a9d9e1 was 25b957c1, checked in by Joel Sherrill <joel.sherrill@…>, on 01/27/03 at 23:30:53

2003-01-27 Joel Sherrill <joel@…>

  • Makefile.am, configure.ac: Added new test loopback which shows how to use the loopback interface. Thank you Eric Norum for a portable target independent test which exercises the TCP/IP. This should prevent massive failures in the TCP/IP stack from reaching the street.
  • loopback/.cvsignore, loopback/Makefile.am, loopback/README, loopback/init.c, loopback/loopback.scn: New files.
  • Property mode set to 100644
File size: 1.7 KB
Line 
1#
2# $Id$
3#
4
5Simple test of kernel network code.
6Requires no network hardware since only the loopback network address is used.
7
8Output should look like:
9========================================================================
10"Network" initializing!
11"Network" initialized!
12Try running client with no server present.
13Should fail with `connection refused'.
14Connect to server.
15Can't connect to server: Connection refused
16Client closing connection.
17
18Start server.
19
20Try running client with server present.
21Create socket.
22Connect to server.
23Bind socket.
24Can't connect to server: Connection refused
25Client closing connection.
26Client task terminating.
27
28Try running two clients.
29Connect to server.
30Connect to server.
31ACCEPTED:7F000001
32ACCEPTED:7F000001
33Write 22-byte message to server.
34Write 22-byte message to server.
35Read 43 from server: Server received 22 (Hi there, server (2).)
36Read 43 from server: Server received 22 (Hi there, server (3).)
37Client closing connection.
38Client task terminating.
39Worker task terminating.
40Client closing connection.
41Client task terminating.
42Worker task terminating.
43
44Try running three clients.
45Connect to server.
46Connect to server.
47Connect to server.
48ACCEPTED:7F000001
49ACCEPTED:7F000001
50ACCEPTED:7F000001
51Write 22-byte message to server.
52Write 22-byte message to server.
53Write 22-byte message to server.
54Read 43 from server: Server received 22 (Hi there, server (4).)
55Read 43 from server: Server received 22 (Hi there, server (5).)
56Read 43 from server: Server received 22 (Hi there, server (6).)
57Client closing connection.
58Client task terminating.
59Worker task terminating.
60Client closing connection.
61Client task terminating.
62Worker task terminating.
63Client closing connection.
64Client task terminating.
65Worker task terminating.
Note: See TracBrowser for help on using the repository browser.