diff options
author | Tobias Schlager <[email protected]> | 2014-02-18 12:33:31 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2014-02-24 11:02:14 +0100 |
commit | 841addf5d64a3b4775cd1d0a5aa4bf04ec4ef95e (patch) | |
tree | bc0150664c476b7bcee1e8d490e2eef5e5ec1dc3 /lib/ssl | |
parent | e13698de39397b8adf774467ff4c9c9b8e22bd3a (diff) | |
download | otp-841addf5d64a3b4775cd1d0a5aa4bf04ec4ef95e.tar.gz otp-841addf5d64a3b4775cd1d0a5aa4bf04ec4ef95e.tar.bz2 otp-841addf5d64a3b4775cd1d0a5aa4bf04ec4ef95e.zip |
Add test suites performing app and appup file checks
Add the mentioned test suites for *all* library and touched
non-library applications.
Diffstat (limited to 'lib/ssl')
-rw-r--r-- | lib/ssl/test/ssl_basic_SUITE.erl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/ssl/test/ssl_basic_SUITE.erl b/lib/ssl/test/ssl_basic_SUITE.erl index 2e216b32fa..ffa5401bf9 100644 --- a/lib/ssl/test/ssl_basic_SUITE.erl +++ b/lib/ssl/test/ssl_basic_SUITE.erl @@ -84,6 +84,7 @@ all_versions_groups ()-> basic_tests() -> [app, + appup, alerts, send_close, version_option, @@ -292,6 +293,11 @@ app() -> app(Config) when is_list(Config) -> ok = ?t:app_test(ssl). %%-------------------------------------------------------------------- +appup() -> + [{doc, "Test that the ssl appup file is ok"}]. +appup(Config) when is_list(Config) -> + ok = ?t:appup_test(ssl). +%%-------------------------------------------------------------------- alerts() -> [{doc, "Test ssl_alert:alert_txt/1"}]. alerts(Config) when is_list(Config) -> |