summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-09-29 08:49:01 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-09-29 08:49:01 +0000
commit1cb238424400e793cc134e0c02edf0fec4d1dee7 (patch)
treeca84f65f7773973e94550e6f586341be0748bb5c
parent22b0480a0cfd5001a963b529013935d62b782a87 (diff)
downloadATCD-1cb238424400e793cc134e0c02edf0fec4d1dee7.tar.gz
Mon Sep 29 07:59:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/tests/COIOP/COIOP_Test.cpp4
-rw-r--r--TAO/tests/Collocation_Exception_Test/Collocated_Test.cpp4
-rw-r--r--TAO/tests/Collocation_Oneway_Tests/Collocated_Test.cpp4
-rw-r--r--TAO/tests/Collocation_Tests/Collocated_Test.cpp4
-rw-r--r--TAO/tests/DII_Collocation_Tests/oneway/Collocated_Test.cpp4
-rw-r--r--TAO/tests/OBV/Collocated/Forward/Collocated_Test.cpp4
-rw-r--r--TAO/tests/Portable_Interceptors/Collocated/Dynamic/Collocated_Test.cpp4
-rw-r--r--TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Collocated_Test.cpp4
-rw-r--r--TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/client_main.cpp2
9 files changed, 17 insertions, 17 deletions
diff --git a/TAO/tests/COIOP/COIOP_Test.cpp b/TAO/tests/COIOP/COIOP_Test.cpp
index a363557d4b5..6d20ffbb864 100644
--- a/TAO/tests/COIOP/COIOP_Test.cpp
+++ b/TAO/tests/COIOP/COIOP_Test.cpp
@@ -7,8 +7,8 @@
#include "ace/Manual_Event.h"
#include "tao/Strategies/advanced_resource.h"
-const ACE_TCHAR output = ACE_TEXT("test.ior");
-const ACE_TCHAR input = ACE_TEXT("file://test.ior");
+const ACE_TCHAR *output = ACE_TEXT("test.ior");
+const ACE_TCHAR *input = ACE_TEXT("file://test.ior");
ACE_CString server_orb;
ACE_CString client_orb;
CORBA::Boolean result = false;
diff --git a/TAO/tests/Collocation_Exception_Test/Collocated_Test.cpp b/TAO/tests/Collocation_Exception_Test/Collocated_Test.cpp
index af94fd2658f..5cb8e4450f3 100644
--- a/TAO/tests/Collocation_Exception_Test/Collocated_Test.cpp
+++ b/TAO/tests/Collocation_Exception_Test/Collocated_Test.cpp
@@ -6,8 +6,8 @@
#include "ace/SString.h"
#include "ace/Manual_Event.h"
-const ACE_TCHAR output = ACE_TEXT("test.ior");
-const ACE_TCHAR input = ACE_TEXT("file://test.ior");
+const ACE_TCHAR *output = ACE_TEXT("test.ior");
+const ACE_TCHAR *input = ACE_TEXT("file://test.ior");
const char *mode = "SYNC_NONE";
// static int named_orbs = 0;
diff --git a/TAO/tests/Collocation_Oneway_Tests/Collocated_Test.cpp b/TAO/tests/Collocation_Oneway_Tests/Collocated_Test.cpp
index fc1d3e3e842..f76768e9698 100644
--- a/TAO/tests/Collocation_Oneway_Tests/Collocated_Test.cpp
+++ b/TAO/tests/Collocation_Oneway_Tests/Collocated_Test.cpp
@@ -6,8 +6,8 @@
#include "ace/SString.h"
#include "ace/Manual_Event.h"
-const ACE_TCHAR output = ACE_TEXT("test.ior");
-const ACE_TCHAR input = ACE_TEXT("file://test.ior");
+const ACE_TCHAR *output = ACE_TEXT("test.ior");
+const ACE_TCHAR *input = ACE_TEXT("file://test.ior");
const char *mode = "SYNC_NONE";
Client_Task::ClientSyncModeEnum syncMode = Client_Task::MODE_NONE;
diff --git a/TAO/tests/Collocation_Tests/Collocated_Test.cpp b/TAO/tests/Collocation_Tests/Collocated_Test.cpp
index bcc2b00ccca..3e3b278ebed 100644
--- a/TAO/tests/Collocation_Tests/Collocated_Test.cpp
+++ b/TAO/tests/Collocation_Tests/Collocated_Test.cpp
@@ -6,8 +6,8 @@
#include "ace/SString.h"
#include "ace/Manual_Event.h"
-const ACE_TCHAR output = ACE_TEXT("test.ior");
-const ACE_TCHAR input = ACE_TEXT("file://test.ior");
+const ACE_TCHAR *output = ACE_TEXT("test.ior");
+const ACE_TCHAR *input = ACE_TEXT("file://test.ior");
// static int named_orbs = 0;
ACE_CString server_orb;
ACE_CString client_orb;
diff --git a/TAO/tests/DII_Collocation_Tests/oneway/Collocated_Test.cpp b/TAO/tests/DII_Collocation_Tests/oneway/Collocated_Test.cpp
index 2a8f967f8b0..5fc830cde2b 100644
--- a/TAO/tests/DII_Collocation_Tests/oneway/Collocated_Test.cpp
+++ b/TAO/tests/DII_Collocation_Tests/oneway/Collocated_Test.cpp
@@ -7,8 +7,8 @@
#include "ace/SString.h"
#include "ace/Manual_Event.h"
-const ACE_TCHAR output = ACE_TEXT("server.ior");
-const ACE_TCHAR input = ACE_TEXT("file://server.ior");
+const ACE_TCHAR *output = ACE_TEXT("server.ior");
+const ACE_TCHAR *input = ACE_TEXT("file://server.ior");
const ACE_TCHAR simple_test_output = ACE_TEXT("simple_test.ior");
const ACE_TCHAR simple_test_input = ACE_TEXT("file://simple_test.ior");
// static int named_orbs = 0;
diff --git a/TAO/tests/OBV/Collocated/Forward/Collocated_Test.cpp b/TAO/tests/OBV/Collocated/Forward/Collocated_Test.cpp
index 6f002ddc7e7..b0900f52ba8 100644
--- a/TAO/tests/OBV/Collocated/Forward/Collocated_Test.cpp
+++ b/TAO/tests/OBV/Collocated/Forward/Collocated_Test.cpp
@@ -6,8 +6,8 @@
#include "ace/SString.h"
#include "ace/Manual_Event.h"
-const ACE_TCHAR output = ACE_TEXT("test.ior");
-const ACE_TCHAR input = ACE_TEXT("file://test.ior");
+const ACE_TCHAR *output = ACE_TEXT("test.ior");
+const ACE_TCHAR *input = ACE_TEXT("file://test.ior");
static int named_orbs = 0;
ACE_CString server_orb;
ACE_CString client_orb;
diff --git a/TAO/tests/Portable_Interceptors/Collocated/Dynamic/Collocated_Test.cpp b/TAO/tests/Portable_Interceptors/Collocated/Dynamic/Collocated_Test.cpp
index 04a57093b71..48882e04720 100644
--- a/TAO/tests/Portable_Interceptors/Collocated/Dynamic/Collocated_Test.cpp
+++ b/TAO/tests/Portable_Interceptors/Collocated/Dynamic/Collocated_Test.cpp
@@ -10,8 +10,8 @@
#include "ace/SString.h"
#include "ace/Manual_Event.h"
-const ACE_TCHAR output = ACE_TEXT("test.ior");
-const ACE_TCHAR input = ACE_TEXT("file://test.ior");
+const ACE_TCHAR *output = ACE_TEXT("test.ior");
+const ACE_TCHAR *input = ACE_TEXT("file://test.ior");
ACE_CString server_orb;
ACE_CString client_orb;
int
diff --git a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Collocated_Test.cpp b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Collocated_Test.cpp
index 8db00b4cf24..f3731621106 100644
--- a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Collocated_Test.cpp
+++ b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Collocated_Test.cpp
@@ -9,8 +9,8 @@
#include "tao/ORBInitializer_Registry.h"
#include "interceptors.h"
-const ACE_TCHAR output = ACE_TEXT("test.ior");
-const ACE_TCHAR input = ACE_TEXT("file://test.ior");
+const ACE_TCHAR *output = ACE_TEXT("test.ior");
+const ACE_TCHAR *input = ACE_TEXT("file://test.ior");
ACE_CString server_proc_mode_str;
ACE_CString client_proc_mode_str;
diff --git a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/client_main.cpp b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/client_main.cpp
index 130cd396184..17b81ba364e 100644
--- a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/client_main.cpp
+++ b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/client_main.cpp
@@ -8,7 +8,7 @@
#include "tao/ORBInitializer_Registry.h"
#include "client_interceptor.h"
-const ACE_TCHAR input = ACE_TEXT("file://test.ior");
+const ACE_TCHAR *input = ACE_TEXT("file://test.ior");
ACE_CString proc_mode_str;