blob: fca3a602673a72cfeefaf3ad2376c3444fd6f939 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
$Id$
Description:
This is a simple test for a thread-pool server. It creates a
server process with a variable number of threads, multiple clients can
send requests to it, the requests are handled in different threads.
Expected output:
The server prints out the IOR of the object it serves and the
thread that handles each request.
How to run:
You can use the run_test.pl script to run it or:
$ server -o test.ior -n 4 -ORBSvcConf server.conf
$ client -k file://test.ior -i 1000
$ client -k file://test.ior -i 1000
$ client -k file://test.ior -i 1000
|