diff --git a/deps/amqp10_client/test/system_SUITE.erl b/deps/amqp10_client/test/system_SUITE.erl index 6800c4f109f0..7998f35d68e7 100644 --- a/deps/amqp10_client/test/system_SUITE.erl +++ b/deps/amqp10_client/test/system_SUITE.erl @@ -21,12 +21,12 @@ suite() -> all() -> [ - {group, rabbitmq}, - {group, rabbitmq_strict}, - {group, activemq}, - {group, ibmmq}, - {group, activemq_no_anon}, - {group, mock} + % {group, rabbitmq}, + % {group, rabbitmq_strict}, + % {group, activemq}, + {group, ibmmq} + % {group, activemq_no_anon}, + % {group, mock} ]. groups() -> @@ -132,11 +132,11 @@ init_per_group(activemq, Config0) -> rabbit_ct_helpers:run_steps(Config, activemq_ct_helpers:setup_steps("activemq.xml")); -init_per_group(ibmmq, Config) -> - ct:log("running arch ~p", [erlang:system_info(system_architecture)]), - case string:find(erlang:system_info(system_architecture), "ARM") of - nomatch -> rabbit_ct_helpers:run_steps(Config, ibmmq_ct_helpers:setup_steps()); - _ -> {skip, no_arm64_docker_image_for_ibmmq} +init_per_group(ibmmq, Config) -> + ct:log("Found arch: ~p", [erlang:system_info(system_architecture)]), + case string:find(erlang:system_info(system_architecture), "x86") of + nomatch -> {skip, no_arm64_docker_image_for_ibmmq}; + _ -> rabbit_ct_helpers:run_steps(Config, ibmmq_ct_helpers:setup_steps()) end; init_per_group(activemq_no_anon, Config0) -> diff --git a/deps/amqp10_client/test/system_SUITE_data/ibmmq_runner b/deps/amqp10_client/test/system_SUITE_data/ibmmq_runner index 994e8b3754bf..98c84f6d7a29 100755 --- a/deps/amqp10_client/test/system_SUITE_data/ibmmq_runner +++ b/deps/amqp10_client/test/system_SUITE_data/ibmmq_runner @@ -59,6 +59,7 @@ invoke_start(){ --env MQ_QMGR_NAME=QM1 \ --env MQ_APP_PASSWORD=passw0rd \ --env MQ_ADMIN_PASSWORD=passw0rd \ + --env LICENSE=accept \ --publish 1414:1414 \ --publish 9443:9443 \ --publish 5672:5672 \