12 |
7u83 |
1 |
% -*- mode: erlang -*-
|
|
|
2 |
{erl_opts, [debug_info,
|
|
|
3 |
{platform_define, "^R15", 'gen_tcp_r15b_workaround'},
|
|
|
4 |
{platform_define, "^(R14|R15|R16B-)", 'crypto_compatibility'},
|
|
|
5 |
{platform_define, "^(R14|R15|R16B|17)", 'rand_mod_unavailable'},
|
|
|
6 |
{platform_define, "^(R14|R15|R16B|17)", 'sni_unavailable'},
|
|
|
7 |
{platform_define, "^(R14|R15|R16)", 'map_unavailable'},
|
|
|
8 |
{platform_define, "^(R14|R15|R16|17|18|19|20)", 'ssl_handshake_unavailable'},
|
|
|
9 |
{platform_define, "^21-", 'otp_21'}]}.
|
|
|
10 |
{cover_enabled, true}.
|
|
|
11 |
{eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.
|
|
|
12 |
{dialyzer_opts, [{warnings, [no_return,
|
|
|
13 |
no_unused,
|
|
|
14 |
no_improper_lists,
|
|
|
15 |
no_fun_app,
|
|
|
16 |
no_match,
|
|
|
17 |
no_opaque,
|
|
|
18 |
no_fail_call,
|
|
|
19 |
error_handling,
|
|
|
20 |
race_conditions,
|
|
|
21 |
behaviours,
|
|
|
22 |
unmatched_returns]}]}.
|