summaryrefslogtreecommitdiff
path: root/erts/emulator/test/process_SUITE.erl
diff options
context:
space:
mode:
authorKian-Meng, Ang <kianmeng@cpan.org>2021-12-02 06:26:13 +0800
committerKian-Meng, Ang <kianmeng@cpan.org>2021-12-02 06:26:13 +0800
commita60508673eca524920ae6f2612da4fdd8e002ff0 (patch)
treeaf27236e7ed47b17fe6c0596b222ea8bb073dc85 /erts/emulator/test/process_SUITE.erl
parente2e81d99a9a643a0f80391d81bb2614813972ded (diff)
downloaderlang-a60508673eca524920ae6f2612da4fdd8e002ff0.tar.gz
Fix typos in erts/emulator/test
Diffstat (limited to 'erts/emulator/test/process_SUITE.erl')
-rw-r--r--erts/emulator/test/process_SUITE.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/erts/emulator/test/process_SUITE.erl b/erts/emulator/test/process_SUITE.erl
index 221173c9ac..65754b1dd7 100644
--- a/erts/emulator/test/process_SUITE.erl
+++ b/erts/emulator/test/process_SUITE.erl
@@ -311,7 +311,7 @@ abnormal_suicide_exit(Config) when is_list(Config) ->
Other -> ct:fail({bad_message, Other})
end.
-%% Tests that exit(self(), die) cannot be catched.
+%% Tests that exit(self(), die) cannot be caught.
t_exit_2_catch(Config) when is_list(Config) ->
process_flag(trap_exit, true),
Pid = fun_spawn(fun() -> catch exit(self(), die) end),
@@ -1354,7 +1354,7 @@ yield(Config) when is_list(Config) ->
Level when is_integer(Level) ->
{skipped,
"Modified timing (level " ++ integer_to_list(Level)
- ++ ") is enabled. Testcase gets messed up by modfied "
+ ++ ") is enabled. Testcase gets messed up by modified "
"timing."};
_ ->
MS = erlang:system_flag(multi_scheduling, block_normal),
@@ -3146,7 +3146,7 @@ spawn_against_ei_node(Config) when is_list(Config) ->
end.
spawn_against_old_node(Config) when is_list(Config) ->
- %% Same spawn tests againts a two releases old node as against
+ %% Same spawn tests against a two releases old node as against
%% ei node above
OldRel = integer_to_list(list_to_integer(erlang:system_info(otp_release))-2),
OldRelName = OldRel ++ "_latest",