Repository: qpid-interop-test Updated Branches: refs/heads/master f33dffc47 -> b37d02fd4
QPIDIT-22: Skipped tests that dont run on Artemis 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/b37d02fd Tree: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/tree/b37d02fd Diff: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/diff/b37d02fd Branch: refs/heads/master Commit: b37d02fd4566eb0ead6a3e53afb89450a2b4070f Parents: f33dffc Author: Kim van der Riet <[email protected]> Authored: Fri May 20 14:38:24 2016 -0400 Committer: Kim van der Riet <[email protected]> Committed: Fri May 20 14:38:24 2016 -0400 ---------------------------------------------------------------------- src/python/qpid-interop-test/types/simple_type_tests.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/b37d02fd/src/python/qpid-interop-test/types/simple_type_tests.py ---------------------------------------------------------------------- diff --git a/src/python/qpid-interop-test/types/simple_type_tests.py b/src/python/qpid-interop-test/types/simple_type_tests.py index 78551eb..914cf8b 100755 --- a/src/python/qpid-interop-test/types/simple_type_tests.py +++ b/src/python/qpid-interop-test/types/simple_type_tests.py @@ -206,11 +206,16 @@ class AmqpPrimitiveTypes(TestTypeMap): BROKER_SKIP = {'null': {'ActiveMQ': 'Null type not sent in Proton Python binding: PROTON-1091', 'qpid-cpp': 'Null type not sent in Proton Python binding: PROTON-1091',}, 'decimal32': {'ActiveMQ': 'decimal32 and decimal64 are sent byte reversed: PROTON-1160', - 'qpid-cpp': 'decimal32 not supported on qpid-cpp broker: QPIDIT-5, QPID-6328',}, + 'qpid-cpp': 'decimal32 not supported on qpid-cpp broker: QPIDIT-5, QPID-6328', + 'unknown': 'decimal32 and decimal64 are sent byte reversed: PROTON-1160'}, 'decimal64': {'ActiveMQ': 'decimal32 and decimal64 are sent byte reversed: PROTON-1160', - 'qpid-cpp': 'decimal64 not supported on qpid-cpp broker: QPIDIT-6, QPID-6328',}, + 'qpid-cpp': 'decimal64 not supported on qpid-cpp broker: QPIDIT-6, QPID-6328', + 'unknown': 'decimal32 and decimal64 are sent byte reversed: PROTON-1160'}, 'decimal128': {'qpid-cpp': 'decimal128 not supported on qpid-cpp broker: QPIDIT-3, QPID-6328',}, - 'char': {'qpid-cpp': 'char not supported on qpid-cpp broker: QPIDIT-4, QPID-6328',}, + 'char': {'qpid-cpp': 'char not supported on qpid-cpp broker: QPIDIT-4, QPID-6328', + 'unknown': 'char types > 16 bits truncated on Artemis: ENTMQ-1685'}, + 'float': {'unknown': '-NaN is stripped of its sign: ENTMQ-1686'}, + 'double': {'unknown': '-NaN is stripped of its sign: ENTMQ-1686'}, } # BROKER_SKIP = {} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
