summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfields_t <fields_t@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-12-22 19:38:10 +0000
committerfields_t <fields_t@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-12-22 19:38:10 +0000
commit27a5d3300f989462feaea79fe837e7e84ec09f7e (patch)
tree3842094fb427ba539c1edd43bdc969854dc6c86d
parent8ebc18a11ba752029887ba95febd424e18411270 (diff)
downloadATCD-27a5d3300f989462feaea79fe837e7e84ec09f7e.tar.gz
ChangeLogTag:Wed Dec 22 11:38:23 2004 Trevor Fields <fields_t@ociweb.com>
-rw-r--r--TAO/ChangeLog13
-rwxr-xr-xTAO/orbsvcs/tests/AVStreams/Full_Profile/run_test.pl4
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Full_Profile/server.cpp2
-rwxr-xr-xTAO/orbsvcs/tests/AVStreams/Multicast/run_test.pl4
4 files changed, 20 insertions, 3 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index b032473d3a9..814ca52a631 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,16 @@
+Wed Dec 22 11:38:23 2004 Trevor Fields <fields_t@ociweb.com>
+
+ * orbsvcs/tests/AVStreams/Full_Profile/run_test.pl:
+ * orbsvcs/tests/AVStreams/Multicast/run_test.pl:
+
+ The size of the test date file generated was incorrect for all
+ platforms. It assumed a 64KB maximum packet size which is
+ incorrect for windows and some additional platforms.
+
+ * orbsvcs/tests/AVStreams/Full_Profile/server.cpp:
+
+ Fixed copy and paste error in error message.
+
Wed Dec 22 08:10:47 2004 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/FTORB.mpc:
diff --git a/TAO/orbsvcs/tests/AVStreams/Full_Profile/run_test.pl b/TAO/orbsvcs/tests/AVStreams/Full_Profile/run_test.pl
index 242253d1740..24cecf2a964 100755
--- a/TAO/orbsvcs/tests/AVStreams/Full_Profile/run_test.pl
+++ b/TAO/orbsvcs/tests/AVStreams/Full_Profile/run_test.pl
@@ -22,7 +22,9 @@ $debug = 0;
unlink $nsior;
# generate test stream data
-$input = PerlACE::generate_test_file("test_input", 102400);
+# the size of this file is limited by the maximum packet size
+# windows has a maximum size of 8KB
+$input = PerlACE::generate_test_file("test_input", 32000);
@protocols = ("TCP",
"UDP"
diff --git a/TAO/orbsvcs/tests/AVStreams/Full_Profile/server.cpp b/TAO/orbsvcs/tests/AVStreams/Full_Profile/server.cpp
index 09dedb59a7e..a0570b874a2 100644
--- a/TAO/orbsvcs/tests/AVStreams/Full_Profile/server.cpp
+++ b/TAO/orbsvcs/tests/AVStreams/Full_Profile/server.cpp
@@ -172,7 +172,7 @@ Server::run (void)
}
ACE_CATCHANY
{
- ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,"server::init\n");
+ ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,"server::run\n");
return -1;
}
ACE_ENDTRY;
diff --git a/TAO/orbsvcs/tests/AVStreams/Multicast/run_test.pl b/TAO/orbsvcs/tests/AVStreams/Multicast/run_test.pl
index 9552c5f8c89..529d858e1b0 100755
--- a/TAO/orbsvcs/tests/AVStreams/Multicast/run_test.pl
+++ b/TAO/orbsvcs/tests/AVStreams/Multicast/run_test.pl
@@ -19,7 +19,9 @@ $test1 = PerlACE::LocalFile ("test1");
$test2 = PerlACE::LocalFile ("test2");
# generate test stream data
-$input = PerlACE::generate_test_file("test_input", 102400);
+# the size of this file is limited by the maximum packet size
+# windows has a maximum size of 8KB
+$input = PerlACE::generate_test_file("test_input", 32000);
unlink $nsior, $test1, $test2;