diff options
author | Dan Gudmundsson <[email protected]> | 2018-01-22 12:09:29 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2018-01-22 12:09:29 +0100 |
commit | 8aa0a6aef5623ff226ea511b94b82e514dccc83b (patch) | |
tree | 92725c3a7027193979fa27bdc16bf15c2a727e91 /lib/observer/test | |
parent | 69de63049417cf7e047f035b5e086caad9dc7932 (diff) | |
parent | 9392f08642c8b74dc4fc9d32a6959174dfb673eb (diff) | |
download | otp-8aa0a6aef5623ff226ea511b94b82e514dccc83b.tar.gz otp-8aa0a6aef5623ff226ea511b94b82e514dccc83b.tar.bz2 otp-8aa0a6aef5623ff226ea511b94b82e514dccc83b.zip |
Merge branch 'dgud/observer/opt-tv-tab/OTP-14856' into maint
* dgud/observer/opt-tv-tab/OTP-14856:
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.erl | 7 |
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), |