diff options
author | Peter Andersson <[email protected]> | 2017-10-24 16:24:18 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2017-12-04 15:59:53 +0100 |
commit | 378da5aef27e1679aa30b8f4a2a6569accb70ff2 (patch) | |
tree | f2c789de166900661bac4df1f7ecc3287d8ba336 /lib/common_test/src/ct_util.erl | |
parent | ca7eb97b48c523cf2eb26d610894f8e3057b7740 (diff) | |
download | otp-378da5aef27e1679aa30b8f4a2a6569accb70ff2.tar.gz otp-378da5aef27e1679aa30b8f4a2a6569accb70ff2.tar.bz2 otp-378da5aef27e1679aa30b8f4a2a6569accb70ff2.zip |
Add tests and doc for the new remaining_test_procs function
Diffstat (limited to 'lib/common_test/src/ct_util.erl')
-rw-r--r-- | lib/common_test/src/ct_util.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common_test/src/ct_util.erl b/lib/common_test/src/ct_util.erl index 796a459bfe..468edc4bee 100644 --- a/lib/common_test/src/ct_util.erl +++ b/lib/common_test/src/ct_util.erl @@ -66,7 +66,7 @@ -export([warn_duplicates/1]). -export([mark_process/0, mark_process/1, is_marked/1, is_marked/2, - get_test_processes/0]). + remaining_test_procs/0]). -export([get_profile_data/0, get_profile_data/1, get_profile_data/2, open_url/3]). @@ -955,7 +955,7 @@ is_marked(Pid, Type) -> false end. -get_test_processes() -> +remaining_test_procs() -> Procs = processes(), {SharedGL,OtherGLs,Procs2} = lists:foldl( |