2017-07-31 20:20:39 +02:00
|
|
|
{erl_opts, [warnings_as_errors,
|
2022-02-17 15:22:50 +00:00
|
|
|
{platform_define, "^2[0-5]{1}", fsm_deprecated},
|
2017-11-13 18:58:50 +00:00
|
|
|
{platform_define, "^1[7-8]{1}", old_rand},
|
2018-10-24 15:42:21 +01:00
|
|
|
{platform_define, "^17", no_log2},
|
2018-09-21 13:27:10 +01:00
|
|
|
{platform_define, "^R", no_sync},
|
2017-09-15 15:10:04 +01:00
|
|
|
{platform_define, "^R", old_rand},
|
2018-10-24 15:42:21 +01:00
|
|
|
{platform_define, "^R", no_log2},
|
2018-09-21 13:27:10 +01:00
|
|
|
{platform_define, "^R", slow_test}]}.
|
2017-07-31 20:20:39 +02:00
|
|
|
|
2018-06-07 15:02:39 +01:00
|
|
|
{xref_checks, [undefined_function_calls,undefined_functions]}.
|
|
|
|
|
2021-05-25 13:41:20 +01:00
|
|
|
{cover_excl_mods,
|
|
|
|
[testutil,
|
|
|
|
appdefined_SUITE, basic_SUITE, iterator_SUITE,
|
|
|
|
perf_SUITE, recovery_SUITE, riak_SUITE, tictac_SUITE]}.
|
|
|
|
|
2020-07-23 11:45:42 +01:00
|
|
|
{eunit_opts, [verbose]}.
|
|
|
|
|
2017-07-31 20:20:39 +02:00
|
|
|
{profiles,
|
|
|
|
[{eqc, [{deps, [meck, fqc]},
|
2021-05-26 17:40:09 +01:00
|
|
|
{erl_opts, [debug_info, {d, 'EQC'}]},
|
2021-08-23 17:18:45 +01:00
|
|
|
{extra_src_dirs, ["test/property", "test/end_to_end"]},
|
2021-05-26 17:40:09 +01:00
|
|
|
{shell, [{apps, [lz4]}]},
|
|
|
|
{plugins, [rebar_eqc]}
|
|
|
|
]},
|
|
|
|
{test, [{extra_src_dirs, ["test/end_to_end", "test/property"]}
|
2021-05-25 13:41:20 +01:00
|
|
|
]}
|
2017-07-31 20:20:39 +02:00
|
|
|
]}.
|
2017-11-03 14:18:49 +00:00
|
|
|
|
|
|
|
{deps, [
|
2020-08-18 14:16:28 +01:00
|
|
|
{lz4, ".*", {git, "https://github.com/martinsumner/erlang-lz4", {tag, "0.2.5"}}}
|
2017-11-03 14:18:49 +00:00
|
|
|
]}.
|
2021-05-25 13:41:20 +01:00
|
|
|
|
|
|
|
{ct_opts, [{dir, ["test/end_to_end"]}]}.
|