aboutsummaryrefslogblamecommitdiffstats
path: root/lib/dialyzer/test/plt_SUITE.erl
blob: aee9f449a6c19a49d38b546acda9d1c2ebffeb8e (plain) (tree)
1
2
3
4
5
6


                                              
                   
 
                                           














                                           
%% This suite is the only hand made and simply
%% checks if we can build a plt.

-module(plt_SUITE).

-include_lib("common_test/include/ct.hrl").
-include("dialyzer_test_constants.hrl").

-export([suite/0, all/0, build_plt/1]).

suite() ->
  [{timetrap, ?plt_timeout}].

all() -> [build_plt].

build_plt(Config) ->
  OutDir = ?config(priv_dir, Config),
  case dialyzer_common:check_plt(OutDir) of
    ok   -> ok;
    fail -> ct:fail(plt_build_fail)
  end.