%% 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.