diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-05-17 14:38:58 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-05-17 14:38:58 +0200 |
commit | 0545c22c9c07c55569e067c57ec184f018a54947 (patch) | |
tree | af22bc5f4488ae95ea49dbd256b4b1ba82ce43ab /lib/os_mon/test | |
parent | 16faeb48b504238aaabd64b6f3c206d4be1a3172 (diff) | |
parent | 6b51a01cd6333c15a7abad8e9ee8ac3773f49965 (diff) | |
download | otp-0545c22c9c07c55569e067c57ec184f018a54947.tar.gz otp-0545c22c9c07c55569e067c57ec184f018a54947.tar.bz2 otp-0545c22c9c07c55569e067c57ec184f018a54947.zip |
Merge branch 'jrobhoward/os_mon/fix-freebsd_get_os_wordsize/PR-1039/OTP-13601'
* jrobhoward/os_mon/fix-freebsd_get_os_wordsize/PR-1039/OTP-13601:
Fix memsup:get_os_wordsize() on 64-bit Linux PPC
os_mon: Test wordsize of memsup:get_os_wordsize/0
Fix memsup:get_os_wordsize() on 64-bit FreeBSD
Diffstat (limited to 'lib/os_mon/test')
-rw-r--r-- | lib/os_mon/test/memsup_SUITE.erl | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/lib/os_mon/test/memsup_SUITE.erl b/lib/os_mon/test/memsup_SUITE.erl index fcd1417693..e40ed574e7 100644 --- a/lib/os_mon/test/memsup_SUITE.erl +++ b/lib/os_mon/test/memsup_SUITE.erl @@ -100,10 +100,16 @@ api(Config) when is_list(Config) -> %% get_os_wordsize() ok = case memsup:get_os_wordsize() of - 32 -> ok; - 64 -> ok; - unsupported_os -> ok; - _ -> error + 32 -> + 32 = 8*erlang:system_info({wordsize,external}), + ok; + 64 -> + % No reliable test here + ok; + unsupported_os -> + ok; + _ -> + error end, %% get_check_interval() |