diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-01-17 17:51:53 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-01-17 17:51:53 +0000 |
commit | e61d89d5622cdc4dbd6cfd6a588c649a0d55761c (patch) | |
tree | b2eaff3c32eb53dfec3d092b03886c8ce0ddde46 /TAO | |
parent | e0422a382bb540b6b985ae5ae9d194ce2fb04a2d (diff) | |
download | ATCD-e61d89d5622cdc4dbd6cfd6a588c649a0d55761c.tar.gz |
ChangeLogTag:Wed Jan 17 09:08:25 2001 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 18 | ||||
-rwxr-xr-x | TAO/tests/AMI/run_test.pl | 2 |
2 files changed, 14 insertions, 6 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index 264b1777738..0db2623ee85 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -1,14 +1,20 @@ +Wed Jan 17 09:08:25 2001 Carlos O'Ryan <coryan@uci.edu> + + * tests/AMI/run_test.pl: + Remove the IOR file before running the test, otherwise old files + can produce unexpected results. + Tue Jan 16 22:35:03 2001 Balachandran Natarajan <bala@cs.wustl.edu> - * tests/Single_Read/Makefile: Forgot to checkin the Makefile this - morning. + * tests/Single_Read/Makefile: Forgot to checkin the Makefile this + morning. - * tests/Makefile: Added teh above Makefile to teh list. + * tests/Makefile: Added the above Makefile to the list. Tue Jan 16 18:57:27 2001 Priyanka Gontla <pgontla@ece.uci.edu> - * orbsvcs/tests/ior_corbaname/Makefile: - Updated dependencies. + * orbsvcs/tests/ior_corbaname/Makefile: + Updated dependencies. Tue Jan 16 20:43:46 2001 Jeff Parsons <parsons@cs.wustl.edu> @@ -16,7 +22,7 @@ Tue Jan 16 20:43:46 2001 Jeff Parsons <parsons@cs.wustl.edu> * TAO_IDL/be/be_union.cpp: * TAO_IDL/be/be_visitor_sequence/sequence_ci.cpp: - Modified body of _var assingment from another _var. + Modified body of _var assignment from another _var. In the case where an uninitialized _var is assigned to another, there is a dereference of a null pointer. This change was needed only for structs, unions and diff --git a/TAO/tests/AMI/run_test.pl b/TAO/tests/AMI/run_test.pl index 667e10d8235..05f46bc9ea3 100755 --- a/TAO/tests/AMI/run_test.pl +++ b/TAO/tests/AMI/run_test.pl @@ -28,6 +28,8 @@ foreach $i (@ARGV) { } $iorfile = "server.ior"; + +unlink $iorfile; $SV = Process::Create ($EXEPREFIX."server$EXE_EXT", " -ORBdebuglevel $debug_level" . "-d -o $iorfile"); |