summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2012-05-15 18:23:04 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2012-05-15 18:23:04 +0000
commit38d791f18d8a67b8b9319f4b6a9579101628b28c (patch)
treebe35c69512246f58a303abc27e2028a848a78f8a /TAO/tests/Param_Test
parent7d6ea0dc00c882c452db06f31af9acc17fc18046 (diff)
downloadATCD-38d791f18d8a67b8b9319f4b6a9579101628b28c.tar.gz
Tue May 15 18:16:09 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ACE.inl: * ace/Atomic_Op_T.h: * ace/Basic_Types.h: * ace/Basic_Types.inl: * ace/Basic_Types.cpp: * ace/CDR_Base.h: * ace/Functor.h: * ace/Functor.inl: * ace/Handle_Set.cpp: * ace/High_Res_Timer.cpp: * ace/Log_Msg.cpp: * ace/Numeric_Limits.h: * ace/OS_NS_Thread.inl: * ace/OS_NS_Thread.cpp: * ace/OS_NS_stdlib.inl: * ace/OS_NS_sys_select.inl: * ace/OS_NS_sys_wait.inl: * ace/OS_NS_time.h: * ace/OS_NS_time.inl: * ace/OS_NS_unistd.inl: * ace/Profile_Timer.cpp: * ace/Sched_Params.cpp: * ace/Stats.cpp: * ace/Task.cpp: * ace/Throughput_Stats.cpp: * ace/Time_Value.h: * ace/Time_Value.inl: * ace/Truncate.h: * ace/UUID.cpp: * ace/os_include/os_pthread.h: * performance-tests/Server_Concurrency/Latency_Stats.h: * performance-tests/Server_Concurrency/Leader_Follower/leader_follower.cpp: * performance-tests/Server_Concurrency/Queue_Based_Workers/workers.cpp: * performance-tests/UDP/udp_test.cpp: * tests/Atomic_Op_Test.cpp: * tests/Basic_Types_Test.cpp: * tests/CDR_Array_Test.cpp: Removed support for Tandem NSK. That was the last platform that needed the emulated versions of ACE_INT64 and ACE_UINT64, that emulation has now been removed * ace/config-tandem-nsk-mips-v2.h: * ace/config-tandem-nsk-mips-v3.h: Removed these files.
Diffstat (limited to 'TAO/tests/Param_Test')
-rw-r--r--TAO/tests/Param_Test/anyop.cpp9
-rw-r--r--TAO/tests/Param_Test/ulonglong.cpp18
2 files changed, 0 insertions, 27 deletions
diff --git a/TAO/tests/Param_Test/anyop.cpp b/TAO/tests/Param_Test/anyop.cpp
index 9a23a40ed16..9ac6b304a67 100644
--- a/TAO/tests/Param_Test/anyop.cpp
+++ b/TAO/tests/Param_Test/anyop.cpp
@@ -156,18 +156,9 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
if (!(any >>= o)
|| i != o)
{
-#if defined (ACE_LACKS_LONGLONG_T)
- char bufferi[32];
- char buffero[32];
- ACE_DEBUG ((LM_DEBUG,
- "Failure for CORBA::ULongLong (%C,%C)\n",
- i.as_string (bufferi),
- o.as_string (buffero)));
-#else
ACE_DEBUG ((LM_DEBUG,
"Failure for CORBA::ULongLong (%Q,%Q)\n",
i, o));
-#endif
}
}
diff --git a/TAO/tests/Param_Test/ulonglong.cpp b/TAO/tests/Param_Test/ulonglong.cpp
index 0156640958f..1aadf506f03 100644
--- a/TAO/tests/Param_Test/ulonglong.cpp
+++ b/TAO/tests/Param_Test/ulonglong.cpp
@@ -114,23 +114,6 @@ Test_ULongLong::check_validity (CORBA::Request_ptr )
void
Test_ULongLong::print_values (void)
{
-#if defined(ACE_LACKS_LONGLONG_T)
- char bufferin[32];
- char bufferinout[32];
- char bufferout[32];
- char bufferret[32];
- ACE_DEBUG ((LM_DEBUG,
- "\n=*=*=*=*=*=*\n"
- "in = %s, "
- "inout = %s, "
- "out = %s, "
- "ret = %s\n"
- "\n=*=*=*=*=*=*\n",
- this->in_.as_string (bufferin),
- this->inout_.as_string (bufferinout),
- this->out_.as_string (bufferout),
- this->ret_.as_string (bufferret)));
-#else
ACE_DEBUG ((LM_DEBUG,
"\n=*=*=*=*=*=*\n"
"in = %Q, "
@@ -142,5 +125,4 @@ Test_ULongLong::print_values (void)
this->inout_,
this->out_,
this->ret_));
-#endif
}