diff options
author | Lukas Larsson <[email protected]> | 2010-10-12 10:59:21 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:28:29 +0100 |
commit | f6b19ef8603b46c64f3722ede3915dd1ac67bae8 (patch) | |
tree | ef98d5938bc0e76eee5b8aaa7ebff121ca820ee5 /lib/crypto/test/blowfish_SUITE.erl | |
parent | 357687bd39fcedff912a0b6a95f1b60038eebd01 (diff) | |
download | otp-f6b19ef8603b46c64f3722ede3915dd1ac67bae8.tar.gz otp-f6b19ef8603b46c64f3722ede3915dd1ac67bae8.tar.bz2 otp-f6b19ef8603b46c64f3722ede3915dd1ac67bae8.zip |
Update crypto tests to conform with common_test standard
Diffstat (limited to 'lib/crypto/test/blowfish_SUITE.erl')
-rw-r--r-- | lib/crypto/test/blowfish_SUITE.erl | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/lib/crypto/test/blowfish_SUITE.erl b/lib/crypto/test/blowfish_SUITE.erl index d117e7cc3d..ae7712479f 100644 --- a/lib/crypto/test/blowfish_SUITE.erl +++ b/lib/crypto/test/blowfish_SUITE.erl @@ -23,7 +23,7 @@ %% Note: This directive should only be used in test suites. -compile(export_all). --include("test_server.hrl"). +-include_lib("test_server/include/test_server.hrl"). -include("test_server_line.hrl"). -define(TIMEOUT, 120000). % 2 min @@ -100,15 +100,18 @@ end_per_testcase(_TestCase, Config) -> %% Name of a test case. %% Description: Returns a list of all test cases in this test suite %%-------------------------------------------------------------------- -all(doc) -> - ["Test Blowfish functionality"]; - -all(suite) -> - [ecb, - cbc, - cfb64, - ofb64 - ]. +all() -> +[ecb, cbc, cfb64, ofb64]. + +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + %% Test cases start here. %%-------------------------------------------------------------------- |