Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / Codec / README
blob41330a74c104d3d0a107291ed58a475148fb1520
3 This test verifies that CodecFactory and CDR encapsulation Codec
4 support is working properly.
6 It does so by encoding a structure into an octet sequence, decoding
7 into a new instance of the structure from the octet sequence, and then
8 comparing the contents of the two structures.
10 Run the test as follows:
12         $ perl run_test.pl
14 Expected output follows:
16 ==== Running Codec test
17 Testing CDR encapsulation Codec encode()/decode()
18 =================================================
19 Original
20 --------
21 1010
22 -3427
23 I'm Batman.
25 Extracted
26 ---------
27 1010
28 -3427
29 I'm Batman.
31 Testing CDR encapsulation Codec encode_value()/decode_value()
32 =============================================================
33 Original
34 --------
35 1010
36 -3427
37 I'm Batman.
39 Extracted
40 ---------
41 1010
42 -3427
43 I'm Batman.
45 Codec test passed.