diff options
author | Peter Andersson <[email protected]> | 2017-10-07 00:27:07 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2017-10-25 17:28:55 +0200 |
commit | ca7eb97b48c523cf2eb26d610894f8e3057b7740 (patch) | |
tree | 9d50f2d34569e46f13f37f50924f54d2a31a8b8f /lib/common_test/src/test_server.erl | |
parent | 2df013b5bfd714247570d9b4958b40f7559d35dd (diff) | |
download | otp-ca7eb97b48c523cf2eb26d610894f8e3057b7740.tar.gz otp-ca7eb97b48c523cf2eb26d610894f8e3057b7740.tar.bz2 otp-ca7eb97b48c523cf2eb26d610894f8e3057b7740.zip |
Implement function that finds disposable test processes
Diffstat (limited to 'lib/common_test/src/test_server.erl')
-rw-r--r-- | lib/common_test/src/test_server.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/common_test/src/test_server.erl b/lib/common_test/src/test_server.erl index d4991408cd..e56106408f 100644 --- a/lib/common_test/src/test_server.erl +++ b/lib/common_test/src/test_server.erl @@ -415,6 +415,7 @@ run_test_case_apply(Mod, Func, Args, Name, RunInit, TimetrapData) -> St = #st{ref=Ref,pid=Pid,mf={Mod,Func},last_known_loc=unknown, status=starting,ret_val=[],comment="",timeout=infinity, config=hd(Args)}, + ct_util:mark_process(), run_test_case_msgloop(St). %% Ugly bug (pre R5A): |