summaryrefslogtreecommitdiff
path: root/ACE/tests
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-03-12 08:48:47 +0100
committerGitHub <noreply@github.com>2019-03-12 08:48:47 +0100
commit1296ad16330a43bfb23c02ce4b87d040a0177811 (patch)
tree6661ce8b9474f02a52993a5c2625be82b8a9f52d /ACE/tests
parent836ce741dfea66222cd3a9768ecdfacf10e5f220 (diff)
downloadATCD-1296ad16330a43bfb23c02ce4b87d040a0177811.tar.gz
Add missing ACE_TEXT
Diffstat (limited to 'ACE/tests')
-rw-r--r--ACE/tests/DLL_Test.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/ACE/tests/DLL_Test.cpp b/ACE/tests/DLL_Test.cpp
index fd42baad828..6afb08ca341 100644
--- a/ACE/tests/DLL_Test.cpp
+++ b/ACE/tests/DLL_Test.cpp
@@ -9,7 +9,6 @@
*/
//=============================================================================
-
#include "test_config.h"
#include "ace/DLL.h"
#include "ace/Auto_Ptr.h"
@@ -19,8 +18,6 @@
#include "ace/OS_NS_dlfcn.h"
#include "DLL_Test.h"
-
-
#if defined (ACE_LD_DECORATOR_STR)
# define OBJ_SUFFIX ACE_LD_DECORATOR_STR ACE_DLL_SUFFIX
#else
@@ -169,7 +166,7 @@ run_main (int, ACE_TCHAR *[])
ACE_TEXT ("Dynamically Linkable Libraries not supported on this platform\n")));
#endif /* ACE_HAS_DYNAMIC_LINKING */
- ACE_TEST_ASSERT (ACE_OS::dlsym (ACE_SHLIB_INVALID_HANDLE, "open"));
+ ACE_TEST_ASSERT (ACE_OS::dlsym (ACE_SHLIB_INVALID_HANDLE, ACE_TEXT ("open")));
ACE_END_TEST;
return retval == 0 ? 0 : 1;