diff options
author | Björn Gustavsson <[email protected]> | 2016-02-15 15:33:12 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-02-17 10:34:51 +0100 |
commit | 03fcb7dabf8861e60ffab4121a909b347bccfec9 (patch) | |
tree | d723c6f763ad0ce87215a3705aba6766739be578 /lib/test_server/src | |
parent | 140725dbbff97471ec9f18632d0e97c2266f7e0e (diff) | |
download | otp-03fcb7dabf8861e60ffab4121a909b347bccfec9.tar.gz otp-03fcb7dabf8861e60ffab4121a909b347bccfec9.tar.bz2 otp-03fcb7dabf8861e60ffab4121a909b347bccfec9.zip |
Eliminate use of test_server.hrl and test_server_line.hrl
As a first step to removing the test_server application as
as its own separate application, change the inclusion of
test_server.hrl to an inclusion of ct.hrl and remove the
inclusion of test_server_line.hrl.
Diffstat (limited to 'lib/test_server/src')
-rw-r--r-- | lib/test_server/src/things/distr_startup_SUITE.erl | 2 | ||||
-rw-r--r-- | lib/test_server/src/things/mnesia_power_SUITE.erl | 2 | ||||
-rw-r--r-- | lib/test_server/src/things/random_kill_SUITE.erl | 2 | ||||
-rw-r--r-- | lib/test_server/src/ts_make.erl | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/test_server/src/things/distr_startup_SUITE.erl b/lib/test_server/src/things/distr_startup_SUITE.erl index aa84ab007f..2423566fc0 100644 --- a/lib/test_server/src/things/distr_startup_SUITE.erl +++ b/lib/test_server/src/things/distr_startup_SUITE.erl @@ -20,7 +20,7 @@ -module(distr_startup_SUITE). -compile([export_all]). %%-define(line_trace,1). --include("test_server.hrl"). +-include_lib("common_test/include/ct.hrl"). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% diff --git a/lib/test_server/src/things/mnesia_power_SUITE.erl b/lib/test_server/src/things/mnesia_power_SUITE.erl index e9bc75e583..84a41d6594 100644 --- a/lib/test_server/src/things/mnesia_power_SUITE.erl +++ b/lib/test_server/src/things/mnesia_power_SUITE.erl @@ -20,7 +20,7 @@ -module(mnesia_power_SUITE). -compile([export_all]). %%-define(line_trace,1). --include("test_server.hrl"). +-include_lib("common_test/include/ct.hrl"). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% diff --git a/lib/test_server/src/things/random_kill_SUITE.erl b/lib/test_server/src/things/random_kill_SUITE.erl index 917bc2b3d5..4dc44b108a 100644 --- a/lib/test_server/src/things/random_kill_SUITE.erl +++ b/lib/test_server/src/things/random_kill_SUITE.erl @@ -20,7 +20,7 @@ -module(random_kill_SUITE). -compile([export_all]). %%-define(line_trace,1). --include("test_server.hrl"). +-include_lib("common_test/include/ct.hrl"). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% diff --git a/lib/test_server/src/ts_make.erl b/lib/test_server/src/ts_make.erl index 0178f4d836..921edb264a 100644 --- a/lib/test_server/src/ts_make.erl +++ b/lib/test_server/src/ts_make.erl @@ -21,7 +21,7 @@ -export([make/1,make/3,unmake/1]). --include("test_server.hrl"). +-include_lib("common_test/include/ct.hrl"). %% Functions to be called from make test cases. |