Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_3215_Regression / README
blob28bd9c7f3d7598d1564a72f1748cdbdb98dcc415
3 N.B. This test is a rip off of the bug #2287 regression test. The only significant change is that after throwing an
4 initial location forward perm back to the client, redirecting it to the same server, the server then starts throwing transients up to (or indeed past) the expiration time. At this poin the client ORB should cease retrying and report the transient to the application.
6 This was instead causing infinite retries of the forwarded IOR taking us past the expiration time and a seg fault after this expiration time.
8 __Regression Output__
10 sm@beatrice:~/tmp/ACE_wrappers/TAO/orbsvcs/tests/Bug_NNNN_Regression> ./run_test.pl
11 On [re-]invocation #1 throwing a ForwardRequest back to the client
12 On re-invocation #1000 throwing a TRANSIENT back to the client
13 On re-invocation #2000 throwing a TRANSIENT back to the client
14 On re-invocation #3000 throwing a TRANSIENT back to the client
15 On re-invocation #4000 throwing a TRANSIENT back to the client
16 On re-invocation #5000 throwing a TRANSIENT back to the client
17 The expiration time has now passed !! The next exception must NOT prompt reinvocation.
18 Expiration time  : 134214167846110410
19 Time now         : 134214167846112890
20 On re-invocation #5140 throwing a TRANSIENT back to the client
21 ERROR: <client> exited with coredump from signal 11 : SEGV
22 ERROR: client returned 255
23 ERROR: server timedout
24 ERROR: server returned -1
26 __Successful Output__
28 sm@beatrice:~/tmp/ACE_wrappers/TAO/orbsvcs/tests/Bug_NNNN_Regression> ./run_test.pl
29 On [re-]invocation #1 throwing a ForwardRequest back to the client
30 On re-invocation #1000 throwing a TRANSIENT back to the client
31 On re-invocation #2000 throwing a TRANSIENT back to the client
32 On re-invocation #3000 throwing a TRANSIENT back to the client
33 On re-invocation #4000 throwing a TRANSIENT back to the client
34 On re-invocation #5000 throwing a TRANSIENT back to the client
35 The expiration time has now passed !! The next exception must NOT prompt reinvocation.
36 Expiration time  : 134214184616960030
37 Time now         : 134214184616961330
38 On re-invocation #5056 throwing a TRANSIENT back to the client
39 Client catches a TRANSIENT, as expected. No problem !
40 Test passed !!!
41 (1705|3075533024) server - event loop finished
43 The below is the original documentation for the bug #2287 test between []'s for reference:
45 [This test provides regression coverage for bugzilla #2287.
47 See http://bugzilla.dre.vanderbilt.edu/show_bug.cgi?id=2287 for more.
49 The server installs a server request interceptor and persistent servant and writes out an IOGR for itself.
50 The client installs client side FT support and invokes the method "throw_location_forward" on the IOGR.
51 The server request interceptor detects invocations of this method and in response either:
52 a/ Throws a location forward back to the original IOGR if cannot determine (from the expiration_time member of the FT request service context) thatthe client must have despatched the request after the expiration time.
53 b/ Allows the request to be completed if it can determine absolutely that the request was despatched after the expiration time. This indicates a regression to the client.
55 A successful outcome is if the client stops following the location forwards once it detects that the expiration time has passed, and a TRANSIENT system exception is recived in the application code.]