summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-08-24 18:43:50 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-08-24 18:43:50 +0000
commitd6ce15dbd700658ae7611ad979261ee12ce5d822 (patch)
treedc66dcbf1eae4be8d775e5660727158f8f5e1ef7
parent4ddef0e5b2ce554588243928000d1e7d15a3212c (diff)
downloadATCD-d6ce15dbd700658ae7611ad979261ee12ce5d822.tar.gz
ChangeLogTag: Fri Aug 24 13:36:19 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a7
-rw-r--r--TAO/tests/File_IO/File_i.cpp4
-rw-r--r--TAO/tests/File_IO/client.cpp2
-rwxr-xr-xTAO/tests/File_IO/run_test.pl4
4 files changed, 10 insertions, 7 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 8009c60d7a5..a04147a3bfc 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Fri Aug 24 13:36:19 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/File_IO/run_test.pl:
+ * tests/File_IO/File_i.cpp: Removed some vague debug statements.
+ * tests/File_IO/client.cpp: Reduced teh number of threads to 10,
+ instead of 20.
+
Fri Aug 24 12:44:45 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/File_IO/: New test to our test suite. This test actually
diff --git a/TAO/tests/File_IO/File_i.cpp b/TAO/tests/File_IO/File_i.cpp
index 32fbebc1d03..83614e46cd1 100644
--- a/TAO/tests/File_IO/File_i.cpp
+++ b/TAO/tests/File_IO/File_i.cpp
@@ -187,8 +187,6 @@ FileImpl::Descriptor::read (CORBA::Long num_bytes,
ACE_THROW_SPEC ((CORBA::SystemException,
File::IOError))
{
- ACE_DEBUG ((LM_DEBUG,
- "(%P|%t) In read \n"));
ACE_HANDLE file_descriptor = this->fd (ACE_TRY_ENV);
ACE_CHECK_RETURN (0);
@@ -212,8 +210,6 @@ FileImpl::Descriptor::lseek (CORBA::ULong offset,
ACE_THROW_SPEC ((CORBA::SystemException,
File::IOError))
{
- ACE_DEBUG ((LM_DEBUG,
- "(%P|%t) In lseek \n"));
ACE_HANDLE file_descriptor = this->fd (ACE_TRY_ENV);
ACE_CHECK_RETURN (0);
diff --git a/TAO/tests/File_IO/client.cpp b/TAO/tests/File_IO/client.cpp
index ccc9e6207f5..810e204359f 100644
--- a/TAO/tests/File_IO/client.cpp
+++ b/TAO/tests/File_IO/client.cpp
@@ -28,7 +28,7 @@ ACE_RCSID(Default_Servant, client, "client.cpp,v 1.8 2001/03/26 21:16:52 coryan
static const char *iorfile = "ior";
static const char *filename = "big.txt";
static const char *message = "POA rules!!";
-static const int NUM_THREADS = 20;
+static const int NUM_THREADS = 10;
static CORBA::ORB_var orb;
static int loops=100;
diff --git a/TAO/tests/File_IO/run_test.pl b/TAO/tests/File_IO/run_test.pl
index e01c747ceb6..42d8acc5e54 100755
--- a/TAO/tests/File_IO/run_test.pl
+++ b/TAO/tests/File_IO/run_test.pl
@@ -5,7 +5,7 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
# $Idrun_test.pl,v 1.9 2001/03/02 02:31:02 brunsch Exp$
# -*- perl -*-
-use lib "../../../../bin";
+use lib "../../../bin";
use PerlACE::Run_Test;
$iorfile = PerlACE::LocalFile ("server.ior");
@@ -24,7 +24,7 @@ if (PerlACE::waitforfile_timed ($iorfile, 5) == -1) {
exit 1;
}
-$client = $CL->SpawnWaitKill (60);
+$client = $CL->SpawnWaitKill (120);
$server = $SV->TerminateWaitKill (10);
unlink $iorfile;