aboutsummaryrefslogtreecommitdiffstats
path: root/lib/observer/test/crashdump_helper.erl
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2018-11-27 17:00:48 +0100
committerSiri Hansen <[email protected]>2018-11-27 17:00:48 +0100
commitc326c098ad41ea99f731cbb26416e07c0921b721 (patch)
tree44744715b7f2a05932dc0cc163153d965b490478 /lib/observer/test/crashdump_helper.erl
parentc5c579d3056c88e23e5324a3a100643033fb2916 (diff)
parentefee45e4381ce1d1fc459e1eb651df8c5b0c03bc (diff)
downloadotp-c326c098ad41ea99f731cbb26416e07c0921b721.tar.gz
otp-c326c098ad41ea99f731cbb26416e07c0921b721.tar.bz2
otp-c326c098ad41ea99f731cbb26416e07c0921b721.zip
Merge branch 'maint'
Diffstat (limited to 'lib/observer/test/crashdump_helper.erl')
-rw-r--r--lib/observer/test/crashdump_helper.erl18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/observer/test/crashdump_helper.erl b/lib/observer/test/crashdump_helper.erl
index dd50bddf38..a71e8fc29c 100644
--- a/lib/observer/test/crashdump_helper.erl
+++ b/lib/observer/test/crashdump_helper.erl
@@ -64,6 +64,7 @@ n1_proc(Creator,_N2,Pid2,Port2,_L) ->
put(ref,Ref),
put(pid,Pid),
put(bin,Bin),
+ put(proc_bins,create_proc_bins()),
put(bins,create_binaries()),
put(sub_bin,SubBin),
put(sub_bins,create_sub_binaries(get(bins))),
@@ -119,6 +120,23 @@ create_sub_binary(Bin, Start, LenSub) ->
<<_:Start/bytes,Sub:Len/bytes,_/bytes>> = Bin,
Sub.
+create_proc_bins() ->
+ Parent = self(),
+ Pid =
+ spawn(
+ fun() ->
+ %% Just reverse the list here, so this binary is not
+ %% confused with the one created in n1_proc/5 above,
+ %% which is used for testing truncation (see
+ %% crashdump_viewer_SUITE:truncate_dump_binary/1)
+ Bin = list_to_binary(lists:reverse(lists:seq(1, 255))),
+ <<A:65/bytes,B:65/bytes,C/bytes>> = Bin,
+ Parent ! {self(),{A,B,C}}
+ end),
+ receive
+ {Pid,ProcBins} -> ProcBins
+ end.
+
%%%
%%% Test dumping of maps. Dumping of maps only from OTP 20.2.
%%%