diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-12-05 21:12:35 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-12-14 15:12:59 +0100 |
commit | ef469286d9740fb430ad37120efe064f47743dbb (patch) | |
tree | ead6a61b4528f7a1a510742adc9689e6dda1f20f /erts/emulator/test | |
parent | 0fb68ef1f8c7f44c6f7edc1cc461d2b598b96fd9 (diff) | |
download | otp-ef469286d9740fb430ad37120efe064f47743dbb.tar.gz otp-ef469286d9740fb430ad37120efe064f47743dbb.tar.bz2 otp-ef469286d9740fb430ad37120efe064f47743dbb.zip |
tests: Use new correct min_bin_vheap_size in test
Diffstat (limited to 'erts/emulator/test')
-rw-r--r-- | erts/emulator/test/process_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/process_SUITE.erl b/erts/emulator/test/process_SUITE.erl index 6509871a7d..9c92706a3b 100644 --- a/erts/emulator/test/process_SUITE.erl +++ b/erts/emulator/test/process_SUITE.erl @@ -411,7 +411,7 @@ t_process_info(Config) when is_list(Config) -> ?line {registered_name, my_name} = process_info(self(), registered_name), ?line {status, running} = process_info(self(), status), ?line {min_heap_size, 233} = process_info(self(), min_heap_size), - ?line {min_bin_vheap_size, 46368} = process_info(self(), min_bin_vheap_size), + {min_bin_vheap_size,46422} = process_info(self(), min_bin_vheap_size), ?line {current_function,{?MODULE,t_process_info,1}} = process_info(self(), current_function), ?line {current_function,{?MODULE,t_process_info,1}} = |