Skip to content

Commit 9218723

Browse files
Use x86_64 to detect running amd64
And enable all other test groups
1 parent 8103cb4 commit 9218723

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

deps/amqp10_client/test/system_SUITE.erl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ suite() ->
2121

2222
all() ->
2323
[
24-
% {group, rabbitmq},
25-
% {group, rabbitmq_strict},
26-
% {group, activemq},
27-
{group, ibmmq}
28-
% {group, activemq_no_anon},
29-
% {group, mock}
24+
{group, rabbitmq},
25+
{group, rabbitmq_strict},
26+
{group, activemq},
27+
{group, ibmmq},
28+
{group, activemq_no_anon},
29+
{group, mock}
3030
].
3131

3232
groups() ->
@@ -134,7 +134,7 @@ init_per_group(activemq, Config0) ->
134134

135135
init_per_group(ibmmq, Config) ->
136136
ct:log("Found arch: ~p", [erlang:system_info(system_architecture)]),
137-
case string:find(erlang:system_info(system_architecture), "x86") of
137+
case string:find(erlang:system_info(system_architecture), "x86_64") of
138138
nomatch -> {skip, no_arm64_docker_image_for_ibmmq};
139139
_ -> rabbit_ct_helpers:run_steps(Config, ibmmq_ct_helpers:setup_steps())
140140
end;

0 commit comments

Comments
 (0)