summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-10-12 09:44:26 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2022-10-12 09:44:26 +0200
commit99f66230ce63174a10ff5acbe7c54e9c06b98065 (patch)
tree1255b6927a106ca1e850a670d0f2f3545a7328f1
parent892141ae11c090cf86d1d6e8c017d2535645f69a (diff)
downloadATCD-99f66230ce63174a10ff5acbe7c54e9c06b98065.tar.gz
Layout changes
-rw-r--r--TAO/tests/Multiple/Multiple_Impl.cpp6
-rw-r--r--TAO/tests/OBV/Indirection/Messenger_i.cpp2
-rw-r--r--TAO/tests/OBV/Truncatable/client.cpp2
-rwxr-xr-xTAO/tests/TransportCurrent/Framework/run_test.pl4
-rwxr-xr-xTAO/tests/TransportCurrent/IIOP/run_test.pl4
-rw-r--r--TAO/tests/Two_Objects/README2
6 files changed, 10 insertions, 10 deletions
diff --git a/TAO/tests/Multiple/Multiple_Impl.cpp b/TAO/tests/Multiple/Multiple_Impl.cpp
index 4aa2c846a52..b63bee32eec 100644
--- a/TAO/tests/Multiple/Multiple_Impl.cpp
+++ b/TAO/tests/Multiple/Multiple_Impl.cpp
@@ -21,19 +21,19 @@ Bottom_Impl::top_quote ()
}
char *
-Bottom_Impl::left_quote ( )
+Bottom_Impl::left_quote ()
{
return CORBA::string_dup(Quote::left);
}
char *
-Bottom_Impl::right_quote ( )
+Bottom_Impl::right_quote ()
{
return CORBA::string_dup(Quote::right);
}
char *
-Bottom_Impl::bottom_quote ( )
+Bottom_Impl::bottom_quote ()
{
return CORBA::string_dup(Quote::bottom);
}
diff --git a/TAO/tests/OBV/Indirection/Messenger_i.cpp b/TAO/tests/OBV/Indirection/Messenger_i.cpp
index 09f9d062d83..953d20632d4 100644
--- a/TAO/tests/OBV/Indirection/Messenger_i.cpp
+++ b/TAO/tests/OBV/Indirection/Messenger_i.cpp
@@ -64,7 +64,7 @@ char * Messenger_i::receive_list (::demo::value::idl::Node * node)
{
size_t const len = l.size ();
size_t i = 0;
- for ( i = 0; i < len; ++i)
+ for (i = 0; i < len; ++i)
{
if (l[i] == x)
break;
diff --git a/TAO/tests/OBV/Truncatable/client.cpp b/TAO/tests/OBV/Truncatable/client.cpp
index 1ddcc5470e2..38e1eba22c5 100644
--- a/TAO/tests/OBV/Truncatable/client.cpp
+++ b/TAO/tests/OBV/Truncatable/client.cpp
@@ -258,7 +258,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
caught_expected_exception = true;
}
- if ( ! caught_expected_exception)
+ if (!caught_expected_exception)
{
fail++;
if (verbose)
diff --git a/TAO/tests/TransportCurrent/Framework/run_test.pl b/TAO/tests/TransportCurrent/Framework/run_test.pl
index 8024151a0f4..3c87cca9597 100755
--- a/TAO/tests/TransportCurrent/Framework/run_test.pl
+++ b/TAO/tests/TransportCurrent/Framework/run_test.pl
@@ -12,9 +12,9 @@ my $status = 0;
my $confmod = "";
my $mode = shift (@ARGV);
-if ( $mode =~ /-dynamic/) {
+if ($mode =~ /-dynamic/) {
}
-elsif ( $mode =~ /-static/) {
+elsif ($mode =~ /-static/) {
$confmod = "-static";
}
else {
diff --git a/TAO/tests/TransportCurrent/IIOP/run_test.pl b/TAO/tests/TransportCurrent/IIOP/run_test.pl
index 3d75daf65a7..293f4c2bf34 100755
--- a/TAO/tests/TransportCurrent/IIOP/run_test.pl
+++ b/TAO/tests/TransportCurrent/IIOP/run_test.pl
@@ -23,13 +23,13 @@ $client->DeleteFile($iorbase);
$status = 0;
$mode = shift (@ARGV);
-if ( $mode =~ /-dynamic/) {
+if ($mode =~ /-dynamic/) {
$base_client_conf = "client_dynamic" . $PerlACE::svcconf_ext;
$base_server_conf = "server_dynamic" . $PerlACE::svcconf_ext;
$client_conf_file = $client->LocalFile ("$base_client_conf");
$server_conf_file = $server->LocalFile ("$base_server_conf");
}
-elsif ( $mode =~ /-static/) {
+elsif ($mode =~ /-static/) {
$base_client_conf = "client_static" . $PerlACE::svcconf_ext;
$base_server_conf = "server_static" . $PerlACE::svcconf_ext;
$client_conf_file = $client->LocalFile ("$base_client_conf");
diff --git a/TAO/tests/Two_Objects/README b/TAO/tests/Two_Objects/README
index bb59441a183..1269794533e 100644
--- a/TAO/tests/Two_Objects/README
+++ b/TAO/tests/Two_Objects/README
@@ -16,7 +16,7 @@ for subsequent requests on the same connection handle.
Description:
-The server creates two servants ( each implementing different
+The server creates two servants (each implementing different
interfaces ). Two threads are created on the server and each
one of them listens for requests (has a orb->run() call). The
client first makes a one way call to Servant 1. It then makes