aboutsummaryrefslogtreecommitdiffstats
path: root/lib/observer/test
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2018-01-22 14:18:45 +0100
committerBjörn Gustavsson <[email protected]>2018-01-22 14:18:45 +0100
commitb04e955ea3eaed13c709546b57e74e26d868323a (patch)
tree23a3d7424d4a4c40b27bdc3dbcc239fc500f255e /lib/observer/test
parent737ba8a823a557b5232bb7e00bb3930dd320785d (diff)
parent7a37e39d45597a25ff532751c5131938b5286331 (diff)
downloadotp-b04e955ea3eaed13c709546b57e74e26d868323a.tar.gz
otp-b04e955ea3eaed13c709546b57e74e26d868323a.tar.bz2
otp-b04e955ea3eaed13c709546b57e74e26d868323a.zip
Merge branch 'maint'
* maint: ErLLVM: Preserve precise BEAM tailcall semantics observer: Fix change accum Remove double calls observer: Don't crash for late messages observer: Optimize tv tab for many tables
Diffstat (limited to 'lib/observer/test')
-rw-r--r--lib/observer/test/observer_SUITE.erl7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/observer/test/observer_SUITE.erl b/lib/observer/test/observer_SUITE.erl
index 0db2c1ea77..fd4f93f662 100644
--- a/lib/observer/test/observer_SUITE.erl
+++ b/lib/observer/test/observer_SUITE.erl
@@ -113,7 +113,12 @@ appup_file(Config) when is_list(Config) ->
basic(suite) -> [];
basic(doc) -> [""];
basic(Config) when is_list(Config) ->
- timer:send_after(100, "foobar"), %% Otherwise the timer server gets added to procs
+ %% Start these before
+ wx:new(),
+ wx:destroy(),
+ timer:send_after(100, "foobar"),
+ {foo, node@machine} ! dummy_msg, %% start distribution stuff
+ %% Otherwise ever lasting servers gets added to procs
ProcsBefore = processes(),
ProcInfoBefore = [{P,process_info(P)} || P <- ProcsBefore],
NumProcsBefore = length(ProcsBefore),