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/syntax_tools/test | |
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/syntax_tools/test')
-rw-r--r-- | lib/syntax_tools/test/syntax_tools_SUITE.erl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/syntax_tools/test/syntax_tools_SUITE.erl b/lib/syntax_tools/test/syntax_tools_SUITE.erl index b673b70a95..d4c54a72aa 100644 --- a/lib/syntax_tools/test/syntax_tools_SUITE.erl +++ b/lib/syntax_tools/test/syntax_tools_SUITE.erl @@ -24,12 +24,12 @@ init_per_group/2,end_per_group/2]). %% Test cases --export([smoke_test/1,revert/1]). +-export([app_test/1,appup_test/1,smoke_test/1,revert/1]). suite() -> [{ct_hooks,[ts_install_cth]}]. all() -> - [smoke_test,revert]. + [app_test,appup_test,smoke_test,revert]. groups() -> []. @@ -46,6 +46,11 @@ init_per_group(_GroupName, Config) -> end_per_group(_GroupName, Config) -> Config. +app_test(Config) when is_list(Config) -> + ok = ?t:app_test(syntax_tools). + +appup_test(Config) when is_list(Config) -> + ok = ?t:appup_test(syntax_tools). %% Read and parse all source in the OTP release. smoke_test(Config) when is_list(Config) -> |