diff options
author | Micael Karlberg <[email protected]> | 2011-03-09 17:47:57 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-03-09 17:47:57 +0100 |
commit | d621b2cdd09adcc38bd6d482ae6c4f87e22cb1e8 (patch) | |
tree | cbe7d00d481e39c002408e65bb3ed9a0053ea781 /lib/dialyzer/test/callgraph_tests_SUITE.erl | |
parent | ed30d7b09dbdc23be7facd602a07f5a373da565e (diff) | |
parent | 4668c233c8f850eb5c3e04e760b25d34b73aa497 (diff) | |
download | otp-d621b2cdd09adcc38bd6d482ae6c4f87e22cb1e8.tar.gz otp-d621b2cdd09adcc38bd6d482ae6c4f87e22cb1e8.tar.bz2 otp-d621b2cdd09adcc38bd6d482ae6c4f87e22cb1e8.zip |
Merge branch 'dev' into bmk/snmp/agent/multi_engine_id_for_traps/OTP-9119
Diffstat (limited to 'lib/dialyzer/test/callgraph_tests_SUITE.erl')
-rw-r--r-- | lib/dialyzer/test/callgraph_tests_SUITE.erl | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/lib/dialyzer/test/callgraph_tests_SUITE.erl b/lib/dialyzer/test/callgraph_tests_SUITE.erl new file mode 100644 index 0000000000..6148adf971 --- /dev/null +++ b/lib/dialyzer/test/callgraph_tests_SUITE.erl @@ -0,0 +1,52 @@ +%% 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(callgraph_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([callgraph_tests_SUITE_consistency/1, test_missing_functions/1]). + +suite() -> + [{timetrap, {minutes, 1}}]. + +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, []}|Config] + end. + +end_per_suite(_Config) -> + ok. + +all() -> + [callgraph_tests_SUITE_consistency,test_missing_functions]. + +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). + +callgraph_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. + +test_missing_functions(Config) -> + case dialyze(Config, test_missing_functions) of + 'same' -> 'same'; + Error -> ct:fail(Error) + end. + |