summaryrefslogtreecommitdiff
path: root/erts/emulator/test/process_SUITE.erl
diff options
context:
space:
mode:
authorLukas Larsson <lukas@erlang.org>2020-05-08 14:13:27 +0200
committerLukas Larsson <lukas@erlang.org>2020-05-08 14:13:27 +0200
commit7f6de9057abb6004cd93f51ec4d8a006dacba8b3 (patch)
tree7102a484a5438f9c30f0fbfe436c70eda04b88db /erts/emulator/test/process_SUITE.erl
parentf11b138786252dfbe48072852074bd5fd20ad0fa (diff)
parentb4d2bfffdac00812dc31540e33afa8728fff3f46 (diff)
downloaderlang-7f6de9057abb6004cd93f51ec4d8a006dacba8b3.tar.gz
Merge branch 'lukas/23/fixes'
* lukas/23/fixes: Use schedulers_online when creating bound processes kernel: Fix boot srv test on ubuntu
Diffstat (limited to 'erts/emulator/test/process_SUITE.erl')
-rw-r--r--erts/emulator/test/process_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/process_SUITE.erl b/erts/emulator/test/process_SUITE.erl
index 7b83857311..e8d5845df6 100644
--- a/erts/emulator/test/process_SUITE.erl
+++ b/erts/emulator/test/process_SUITE.erl
@@ -1128,7 +1128,7 @@ process_info_status_handled_signal(Config) when is_list(Config) ->
%% And a bug where process_info(reductions) on a process which was releasing its
%% main lock during execution could result in negative reduction diffs.
process_info_reductions(Config) when is_list(Config) ->
- {S1, S2} = case erlang:system_info(schedulers) of
+ {S1, S2} = case erlang:system_info(schedulers_online) of
1 -> {1,1};
_ -> {1,2}
end,