You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kp...@apache.org on 2016/03/07 15:53:58 UTC

qpid-interop-test git commit: QPIDIT-22: Removed +inf and -inf from 32-bit float in both JMS and AMQP type tests because of failure in RHEL7 (see PROTON-1149)

Repository: qpid-interop-test
Updated Branches:
  refs/heads/master b38145378 -> 75c73667f


QPIDIT-22: Removed +inf and -inf from 32-bit float in both JMS and AMQP type tests because of failure in RHEL7 (see PROTON-1149)


Project: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/commit/75c73667
Tree: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/tree/75c73667
Diff: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/diff/75c73667

Branch: refs/heads/master
Commit: 75c73667fdf62157e1ab41cffea38a997e7b3989
Parents: b381453
Author: Kim van der Riet <kp...@apache.org>
Authored: Mon Mar 7 09:53:18 2016 -0500
Committer: Kim van der Riet <kp...@apache.org>
Committed: Mon Mar 7 09:53:18 2016 -0500

----------------------------------------------------------------------
 src/py/qpid-interop-test/jms/jms_message_tests.py   | 4 ++--
 src/py/qpid-interop-test/types/simple_type_tests.py | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/75c73667/src/py/qpid-interop-test/jms/jms_message_tests.py
----------------------------------------------------------------------
diff --git a/src/py/qpid-interop-test/jms/jms_message_tests.py b/src/py/qpid-interop-test/jms/jms_message_tests.py
index 40cdcb2..b92d98c 100755
--- a/src/py/qpid-interop-test/jms/jms_message_tests.py
+++ b/src/py/qpid-interop-test/jms/jms_message_tests.py
@@ -89,8 +89,8 @@ class JmsMessageTypes(TestTypeMap):
                   '0x80800000', # Smallest negative normalized number
                   '0x7f7fffff', # Largest positive normalized number
                   '0xff7fffff', # Largest negative normalized number
-                  '0x7f800000', # +Infinity
-                  '0xff800000', # -Infinity
+                  #'0x7f800000', # +Infinity  # PROTON-1149 - fails on RHEL7
+                  #'0xff800000', # -Infinity # PROTON-1149 - fails on RHEL7
                   '0x7fc00000'], # +NaN
         'int': ['-0x80000000',
                 '-0x81',

http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/75c73667/src/py/qpid-interop-test/types/simple_type_tests.py
----------------------------------------------------------------------
diff --git a/src/py/qpid-interop-test/types/simple_type_tests.py b/src/py/qpid-interop-test/types/simple_type_tests.py
index cf4edf1..c775dcb 100755
--- a/src/py/qpid-interop-test/types/simple_type_tests.py
+++ b/src/py/qpid-interop-test/types/simple_type_tests.py
@@ -105,8 +105,8 @@ class AmqpPrimitiveTypes(TestTypeMap):
                   '0x80800000', # Smallest negative normalized number
                   '0x7f7fffff', # Largest positive normalized number
                   '0xff7fffff', # Largest negative normalized number
-                  '0x7f800000', # +Infinity
-                  '0xff800000', # -Infinity
+                  #'0x7f800000', # +Infinity # PROTON-1149 - fails on RHEL7
+                  #'0xff800000', # -Infinity # PROTON-1149 - fails on RHEL7
                   '0x7fc00000', # +NaN
                   '0xffc00000'], # -NaN
         'double': ['0x0000000000000000', # 0.0


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org