=default for generated implementation copy ctor
[ACE_TAO.git] / TAO / tests / OctetSeq / README
bloba22f254c593d062eb630d871c06f9e62a0388c96
1 = server, client
3         This test verifies that the optimizations for octet sequences
4 don't have strange side effects. The clients sends a number of octet
5 sequences that are stored by the server, it then queries the CRC
6 checksum for several of them (at random) to verify that the contents
7 are intact.
8         To run this test try:
10 $ server -o test.ior
11 $ client -k file://test.ior -i 10000 -v
13 = OctetSeq
15         This test measures the time it takes to marshal sequences of
16 octets of different sizes. Since TAO optimizes octet sequence
17 marshaling it was interesting to compare that time with the time to
18 marshal sequences of chars (which could be optimized also, but there
19 is no need for it).
21         The test accepts a few options:
23         -l <low>
24                 Sets the minimum size of the sequences tested.
26         -h <high>
27                 The maximum size of the sequences tested.
29         -s <step>
30                 Increase the size of the sequence from <low> to <high>
31                 in increments of <step>
33         -n <iter>
34                 The number of iterations (marshaling/demarshaling)
35                 done for each loop.
37         -q
38                 Be quiet, only print the summary data....
40         Example:
42 $ ./OctetSeq -l 4096 -h 8192 -s 16 -n 32 -q