From 2131f1e72cb5af0a9a31b36e64e2d38148ea91dd Mon Sep 17 00:00:00 2001 From: Siri Hansen Date: Wed, 6 Apr 2016 13:42:28 +0200 Subject: Add missing modules to common_test.app.src --- lib/common_test/src/common_test.app.src | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/common_test') diff --git a/lib/common_test/src/common_test.app.src b/lib/common_test/src/common_test.app.src index 26bcf00824..fb18b6a1e9 100644 --- a/lib/common_test/src/common_test.app.src +++ b/lib/common_test/src/common_test.app.src @@ -26,6 +26,7 @@ ct_framework, ct_ftp, ct_gen_conn, + ct_groups, ct_hooks, ct_hooks_lock, ct_logs, @@ -36,6 +37,8 @@ ct_master_status, ct_netconfc, ct_conn_log_h, + ct_property_test, + ct_release_test, ct_repeat, ct_rpc, ct_run, @@ -45,6 +48,8 @@ ct_telnet, ct_testspec, ct_util, + ct_webtool, + ct_webtool_sup, unix_telnet, vts, ct_config, @@ -57,6 +62,7 @@ erl2html2, test_server_ctrl, test_server, + test_server_gl, test_server_io, test_server_node, test_server_sup -- cgit v1.2.3 From 0dd267e5eb1e599f92bcd7f6225a85ad6d4d9a6c Mon Sep 17 00:00:00 2001 From: Siri Hansen Date: Fri, 8 Apr 2016 12:37:47 +0200 Subject: Don't add explicit path to ct_release_test This module is now in common_test.app, so it will be included in the release which is upgraded from (and to). --- lib/common_test/src/ct_release_test.erl | 4 ---- 1 file changed, 4 deletions(-) (limited to 'lib/common_test') diff --git a/lib/common_test/src/ct_release_test.erl b/lib/common_test/src/ct_release_test.erl index 6c38f51363..6f01a80915 100644 --- a/lib/common_test/src/ct_release_test.erl +++ b/lib/common_test/src/ct_release_test.erl @@ -655,10 +655,6 @@ do_upgrade({Cb,InitState},FromVsn,FromAppsVsns,ToRel,ToAppsVsns,InstallDir) -> Start = filename:join([InstallDir,bin,start]), {ok,Node} = start_node(Start,FromVsn,FromAppsVsns), - %% Add path to this module, to allow calls to get_appup/2 - Dir = filename:dirname(code:which(?MODULE)), - _ = rpc:call(Node,code,add_pathz,[Dir]), - ct:log("Node started: ~p",[Node]), CtData = #ct_data{from = [{A,V,code:lib_dir(A)} || {A,V} <- FromAppsVsns], to=[{A,V,code:lib_dir(A)} || {A,V} <- ToAppsVsns]}, -- cgit v1.2.3