diff options
author | John Högberg <[email protected]> | 2019-08-12 15:19:04 +0200 |
---|---|---|
committer | John Högberg <[email protected]> | 2019-08-12 15:19:04 +0200 |
commit | 1f6cb54c0ada901fb6dc6efba282c1d499a8e0a8 (patch) | |
tree | 1f9eb1c1b0ebf8ff493e76e527789ba8e154c556 /lib/observer/test | |
parent | 8ecd95336a0c5ffadab5727a7e2bea3d7d03d059 (diff) | |
parent | 65874ca12f22c0135399c9161b3091a39e40e20f (diff) | |
download | otp-1f6cb54c0ada901fb6dc6efba282c1d499a8e0a8.tar.gz otp-1f6cb54c0ada901fb6dc6efba282c1d499a8e0a8.tar.bz2 otp-1f6cb54c0ada901fb6dc6efba282c1d499a8e0a8.zip |
Merge branch 'maint'
* maint:
erts: Create heap binaries in binary:split/2-3
erts: Create heap binaries in binary_part/2-3
erts: Create heap binaries in split_binary/2
erts: Create heap binaries in bs_get_binary2
erts: Remove size check in bs_start_match
erts: Disallow binaries whose size in bits exceeds UWORD_MAX
Diffstat (limited to 'lib/observer/test')
-rw-r--r-- | lib/observer/test/crashdump_helper.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/observer/test/crashdump_helper.erl b/lib/observer/test/crashdump_helper.erl index 84ed99afa5..10d88c994a 100644 --- a/lib/observer/test/crashdump_helper.erl +++ b/lib/observer/test/crashdump_helper.erl @@ -48,7 +48,7 @@ n1_proc(Creator,_N2,Pid2,Port2,_L) -> Ref = make_ref(), Pid = self(), Bin = list_to_binary(lists:seq(1, 255)), - <<_:2,SubBin:17/binary,_/bits>> = Bin, + <<_:2,SubBin:65/binary,_/bits>> = Bin, register(named_port,Port), @@ -102,7 +102,7 @@ remote_proc(P1,Creator) -> end). create_binaries() -> - Sizes = lists:seq(60, 70) ++ lists:seq(120, 140), + Sizes = lists:seq(100, 120) ++ lists:seq(200, 240), [begin <<H:16/unit:8>> = erlang:md5(<<Size:32>>), Data = ((H bsl (8*150)) div (H+7919)), @@ -113,7 +113,7 @@ create_sub_binaries(Bins) -> [create_sub_binary(Bin, Start, LenSub) || Bin <- Bins, Start <- [0,1,2,3,4,5,10,22], - LenSub <- [0,1,2,3,4,6,9]]. + LenSub <- [0,1,2,3,4,6,9,65]]. create_sub_binary(Bin, Start, LenSub) -> Len = byte_size(Bin) - LenSub - Start, |