diff options
author | Stavros Aronis <[email protected]> | 2011-04-02 17:36:08 +0300 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-05-04 15:06:14 +0200 |
commit | bc619f0cbf9555df6dfc44a499f0cd9cee8bd1be (patch) | |
tree | 82f6b1da6e97603c3a8354a6ed78dd889a1281fc /lib/dialyzer/test/r9c_tests_SUITE.erl | |
parent | 4dd5d2a84e62ee53ead077c0075b3338a827280b (diff) | |
download | otp-bc619f0cbf9555df6dfc44a499f0cd9cee8bd1be.tar.gz otp-bc619f0cbf9555df6dfc44a499f0cd9cee8bd1be.tar.bz2 otp-bc619f0cbf9555df6dfc44a499f0cd9cee8bd1be.zip |
Simplify Dialyzer's test suite structure
*_SUITE.erl files are now automatically generated by the respective data
directories by the Makefile.
Diffstat (limited to 'lib/dialyzer/test/r9c_tests_SUITE.erl')
-rw-r--r-- | lib/dialyzer/test/r9c_tests_SUITE.erl | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/lib/dialyzer/test/r9c_tests_SUITE.erl b/lib/dialyzer/test/r9c_tests_SUITE.erl deleted file mode 100644 index cd5bd5ec61..0000000000 --- a/lib/dialyzer/test/r9c_tests_SUITE.erl +++ /dev/null @@ -1,64 +0,0 @@ -%% ATTENTION! -%% This is an automatically generated file. Do not edit. -%% Use './remake' script to refresh it if needed. -%% All Dialyzer options should be defined in dialyzer_options -%% file. - --module(r9c_tests_SUITE). - --include("ct.hrl"). --include("dialyzer_test_constants.hrl"). - --export([suite/0, init_per_suite/0, init_per_suite/1, - end_per_suite/1, all/0]). --export([r9c_tests_SUITE_consistency/1, asn1/1, inets/1, mnesia/1]). - -suite() -> - [{timetrap, {minutes, 20}}]. - -init_per_suite() -> - [{timetrap, ?plt_timeout}]. -init_per_suite(Config) -> - OutDir = ?config(priv_dir, Config), - case dialyzer_common:check_plt(OutDir) of - fail -> {skip, "Plt creation/check failed."}; - ok -> [{dialyzer_options, [{defines,[{vsn,42}]}]}|Config] - end. - -end_per_suite(_Config) -> - ok. - -all() -> - [r9c_tests_SUITE_consistency,asn1,inets,mnesia]. - -dialyze(Config, TestCase) -> - Opts = ?config(dialyzer_options, Config), - Dir = ?config(data_dir, Config), - OutDir = ?config(priv_dir, Config), - dialyzer_common:check(TestCase, Opts, Dir, OutDir). - -r9c_tests_SUITE_consistency(Config) -> - Dir = ?config(data_dir, Config), - case dialyzer_common:new_tests(Dir, all()) of - [] -> ok; - New -> ct:fail({missing_tests,New}) - end. - -asn1(Config) -> - case dialyze(Config, asn1) of - 'same' -> 'same'; - Error -> ct:fail(Error) - end. - -inets(Config) -> - case dialyze(Config, inets) of - 'same' -> 'same'; - Error -> ct:fail(Error) - end. - -mnesia(Config) -> - case dialyze(Config, mnesia) of - 'same' -> 'same'; - Error -> ct:fail(Error) - end. - |