diff options
author | Peter Andersson <[email protected]> | 2017-10-03 14:53:42 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2017-10-25 17:28:55 +0200 |
commit | 70b6b32a9c7e3e3fca45fc3a0e11e2a5087a4660 (patch) | |
tree | ffce83db6a82e5aaa89f474732794c9a915d6157 /lib/common_test/src/vts.erl | |
parent | 7fb796ab3636af53a7ef659099c1fb9fe37c1957 (diff) | |
download | otp-70b6b32a9c7e3e3fca45fc3a0e11e2a5087a4660.tar.gz otp-70b6b32a9c7e3e3fca45fc3a0e11e2a5087a4660.tar.bz2 otp-70b6b32a9c7e3e3fca45fc3a0e11e2a5087a4660.zip |
Add app name tag in process dictionary
Diffstat (limited to 'lib/common_test/src/vts.erl')
-rw-r--r-- | lib/common_test/src/vts.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/common_test/src/vts.erl b/lib/common_test/src/vts.erl index 99a109cfe8..e1482d9014 100644 --- a/lib/common_test/src/vts.erl +++ b/lib/common_test/src/vts.erl @@ -155,6 +155,7 @@ test_info(_VtsPid,Type,Data) -> call({test_info,Type,Data}). init(Parent) -> + put(app, common_test), register(?MODULE,self()), process_flag(trap_exit,true), Parent ! {self(),started}, @@ -284,6 +285,7 @@ run_test1(State=#state{tests=Tests,current_log_dir=LogDir, logopts=LogOpts}) -> Self=self(), RunTest = fun() -> + put(app, common_test), case ct_run:do_run(Tests,[],LogDir,LogOpts) of {error,_Reason} -> aborted(); |