diff options
author | Lukas Larsson <[email protected]> | 2010-10-12 10:51:46 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:28:28 +0100 |
commit | a7cf522a129b3d707141bb681fc5c074bdca5e69 (patch) | |
tree | d5ee9ce41507eb4bd2009396709afb8bfe399674 /lib/common_test/test/ct_config_SUITE.erl | |
parent | afda520a493cfc6dda951d0881d28190f564ec08 (diff) | |
download | otp-a7cf522a129b3d707141bb681fc5c074bdca5e69.tar.gz otp-a7cf522a129b3d707141bb681fc5c074bdca5e69.tar.bz2 otp-a7cf522a129b3d707141bb681fc5c074bdca5e69.zip |
Update common_test tests to conform with common_test standard
Diffstat (limited to 'lib/common_test/test/ct_config_SUITE.erl')
-rw-r--r-- | lib/common_test/test/ct_config_SUITE.erl | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/lib/common_test/test/ct_config_SUITE.erl b/lib/common_test/test/ct_config_SUITE.erl index fc15abc5bc..c4639ee9d6 100644 --- a/lib/common_test/test/ct_config_SUITE.erl +++ b/lib/common_test/test/ct_config_SUITE.erl @@ -29,7 +29,7 @@ -compile(export_all). --include_lib("test_server/include/test_server.hrl"). +-include_lib("common_test/include/ct.hrl"). -include_lib("common_test/include/ct_event.hrl"). -define(eh, ct_test_support_eh). @@ -64,19 +64,20 @@ end_per_testcase(install_config = TestCase, Config) -> end_per_testcase(TestCase, Config) -> ct_test_support:end_per_testcase(TestCase, Config). -all(doc) -> - [""]; - -all(suite) -> - [ - require, - install_config, - userconfig_static, - userconfig_dynamic, - testspec_legacy, - testspec_static, - testspec_dynamic - ]. +all() -> +[require, install_config, userconfig_static, + userconfig_dynamic, testspec_legacy, testspec_static, + testspec_dynamic]. + +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + %%-------------------------------------------------------------------- %% TEST CASES |