aboutsummaryrefslogtreecommitdiffstats
path: root/lib/megaco
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2019-07-17 11:46:28 +0200
committerMicael Karlberg <[email protected]>2019-07-17 12:17:34 +0200
commit715f41be0285e5992180e5e280af9536ace0d2a9 (patch)
tree642a416e3f8063874b097580fc4c8f791bc04467 /lib/megaco
parent62b0a65b27e16c3d56df45760fb4878cf2ede5f9 (diff)
downloadotp-715f41be0285e5992180e5e280af9536ace0d2a9.tar.gz
otp-715f41be0285e5992180e5e280af9536ace0d2a9.tar.bz2
otp-715f41be0285e5992180e5e280af9536ace0d2a9.zip
[megaco|test] Removed the "compile all" compiler directive (top)
Removed the "compile all" compiler directive for the top megaco test suite.
Diffstat (limited to 'lib/megaco')
-rw-r--r--lib/megaco/test/megaco_SUITE.erl18
1 files changed, 16 insertions, 2 deletions
diff --git a/lib/megaco/test/megaco_SUITE.erl b/lib/megaco/test/megaco_SUITE.erl
index 38590f9fee..a73a73409b 100644
--- a/lib/megaco/test/megaco_SUITE.erl
+++ b/lib/megaco/test/megaco_SUITE.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2000-2016. All Rights Reserved.
+%% Copyright Ericsson AB 2000-2019. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
@@ -25,7 +25,21 @@
-module(megaco_SUITE).
--compile(export_all).
+-export([
+ suite/0,
+ all/0,
+ groups/0,
+
+ init_per_suite/1,
+ end_per_suite/1,
+ init_per_group/2,
+ end_per_group/2,
+ init_per_testcase/2,
+ end_per_testcase/2,
+
+ t/0, t/1,
+ init/0
+ ]).
-include("megaco_test_lib.hrl").
-include_lib("megaco/include/megaco.hrl").