summaryrefslogtreecommitdiff
path: root/ACE/tests/OS_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-01-15 11:01:49 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2023-01-15 11:01:49 +0100
commitb30753f1a1b18c831e89223ec01db66231b5a64a (patch)
tree8839fc17461b7ec6e0bc2c0f9568dd0dba9c9fe8 /ACE/tests/OS_Test.cpp
parent6f36dbed40cbedb60f2c40376d360c704d7db93b (diff)
downloadATCD-b30753f1a1b18c831e89223ec01db66231b5a64a.tar.gz
Removed HPUX support
Diffstat (limited to 'ACE/tests/OS_Test.cpp')
-rw-r--r--ACE/tests/OS_Test.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/ACE/tests/OS_Test.cpp b/ACE/tests/OS_Test.cpp
index e48b46a43de..b9fad773749 100644
--- a/ACE/tests/OS_Test.cpp
+++ b/ACE/tests/OS_Test.cpp
@@ -603,8 +603,6 @@ snprintf_test (SNPrintF_t fn)
ACE_OS::memset(buf, 0xab, 2*BUFFER_SIZE);
retval = fn (buf, BUFFER_SIZE, "%d", 1234);
- // HP-UX has broken vsnprintf
-#if !defined (HPUX)
if (retval != 4)
{
ACE_ERROR ((LM_ERROR,
@@ -612,7 +610,6 @@ snprintf_test (SNPrintF_t fn)
retval));
++error_count;
}
-#endif /* !HPUX */
if (buf[3] != 0)
{