diff options
author | Lukas Larsson <[email protected]> | 2016-04-22 18:45:30 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2016-04-26 15:36:41 +0200 |
commit | 6aae129123c4ce8988cc67b3545db9d1ec51324b (patch) | |
tree | 18597323f308f008ef1596edb95820377b4af555 /erts/emulator/test | |
parent | 76cf34c49631845a21ffdd6d317d7fc944ab9b7b (diff) | |
download | otp-6aae129123c4ce8988cc67b3545db9d1ec51324b.tar.gz otp-6aae129123c4ce8988cc67b3545db9d1ec51324b.tar.bz2 otp-6aae129123c4ce8988cc67b3545db9d1ec51324b.zip |
erts: Rename erl flag +xmqd to +hmqd
Flags that control the heap should all fall under the +h flag
Diffstat (limited to 'erts/emulator/test')
-rw-r--r-- | erts/emulator/test/message_queue_data_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/erts/emulator/test/message_queue_data_SUITE.erl b/erts/emulator/test/message_queue_data_SUITE.erl index 6efca5b39e..37523d68e1 100644 --- a/erts/emulator/test/message_queue_data_SUITE.erl +++ b/erts/emulator/test/message_queue_data_SUITE.erl @@ -44,15 +44,15 @@ basic(Config) when is_list(Config) -> basic_test(erlang:system_info(message_queue_data)), - {ok, Node1} = start_node(Config, "+xmqd off_heap"), + {ok, Node1} = start_node(Config, "+hmqd off_heap"), ok = rpc:call(Node1, ?MODULE, basic_test, [off_heap]), stop_node(Node1), - {ok, Node2} = start_node(Config, "+xmqd on_heap"), + {ok, Node2} = start_node(Config, "+hmqd on_heap"), ok = rpc:call(Node2, ?MODULE, basic_test, [on_heap]), stop_node(Node2), - {ok, Node3} = start_node(Config, "+xmqd mixed"), + {ok, Node3} = start_node(Config, "+hmqd mixed"), ok = rpc:call(Node3, ?MODULE, basic_test, [mixed]), stop_node(Node3), |