summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2015-02-04 17:37:19 +0000
committerStephen D. Huston <shuston@apache.org>2015-02-04 17:37:19 +0000
commitd75fedad65ae24813f440362931a9a7b7fb66cac (patch)
treeed13f62fcb010d0ca07488f8c389a61abe982fbc /qpid/cpp/src/tests
parentd3fd2da6c424e04725c7b40f097ea31036dab0f1 (diff)
downloadqpid-python-d75fedad65ae24813f440362931a9a7b7fb66cac.tar.gz
Apply patches for QPID-6312 to get Qpid building on AIX with XL C++ 13.1
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1657338 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests')
-rw-r--r--qpid/cpp/src/tests/TimerTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/TimerTest.cpp b/qpid/cpp/src/tests/TimerTest.cpp
index e9ca3fcdf6..d28eeeffc1 100644
--- a/qpid/cpp/src/tests/TimerTest.cpp
+++ b/qpid/cpp/src/tests/TimerTest.cpp
@@ -82,7 +82,7 @@ class TestTask : public TimerTask
uint64_t difference = _abs64(expected - actual);
#elif defined(_WIN32)
uint64_t difference = labs(expected - actual);
-#elif defined(__SUNPRO_CC)
+#elif defined(__SUNPRO_CC) || defined (__IBMCPP__)
uint64_t difference = llabs(expected - actual);
#else
uint64_t difference = abs(expected - actual);