1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: increase timeout threshold
This change addresses the timeout happening on low power buildd architectures
such as armel.
Author: Philipp Huebner <debalance@debian.org>
Index: erlang-p1-eimp/rebar.config
===================================================================
--- erlang-p1-eimp.orig/rebar.config
+++ erlang-p1-eimp/rebar.config
@@ -42,6 +42,8 @@
{xref_checks, [undefined_function_calls, undefined_functions, deprecated_function_calls, deprecated_functions]}.
+{eunit_opts, [{scale_timeouts, 10}]}.
+
%% Local Variables:
%% mode: erlang
%% End:
|