diff options
author | Peter Andersson <[email protected]> | 2010-06-05 20:57:10 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2010-06-09 16:19:24 +0200 |
commit | 331bb449c72078c315eff558158478445c4cb888 (patch) | |
tree | 8eb6ac24286612ed075a68faa299764cb92197c4 /lib/common_test/src/vts.erl | |
parent | d3a6ecb105706b66f1c0c6b8a515370df5e29bd3 (diff) | |
download | otp-331bb449c72078c315eff558158478445c4cb888.tar.gz otp-331bb449c72078c315eff558158478445c4cb888.tar.bz2 otp-331bb449c72078c315eff558158478445c4cb888.zip |
Minor fixes in code and test suites
Diffstat (limited to 'lib/common_test/src/vts.erl')
-rw-r--r-- | lib/common_test/src/vts.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/common_test/src/vts.erl b/lib/common_test/src/vts.erl index 22399aff2a..eb6d82d601 100644 --- a/lib/common_test/src/vts.erl +++ b/lib/common_test/src/vts.erl @@ -160,9 +160,9 @@ init(Parent) -> loop(State) -> receive - {{init_data,ConfigFiles,EvHandlers,LogDir,Tests},From} -> - ct:pal("State#state.current_log_dir=~p", [State#state.current_log_dir]), - NewState = State#state{config=ConfigFiles,event_handler=EvHandlers, + {{init_data,Config,EvHandlers,LogDir,Tests},From} -> + %% ct:pal("State#state.current_log_dir=~p", [State#state.current_log_dir]), + NewState = State#state{config=Config,event_handler=EvHandlers, current_log_dir=LogDir,tests=Tests}, ct_install(NewState), return(From,ok), |