diff --git a/test/bg_manager_tests.erl b/test/bg_manager_tests.erl index f54a06693..627208ba6 100644 --- a/test/bg_manager_tests.erl +++ b/test/bg_manager_tests.erl @@ -1,5 +1,5 @@ -module(bg_manager_tests). --compile(export_all). +-compile([export_all, nowarn_export_all]). -include_lib("riak_core_bg_manager.hrl"). diff --git a/test/claim_simulation.erl b/test/claim_simulation.erl index 7ac8ae517..442b0a833 100644 --- a/test/claim_simulation.erl +++ b/test/claim_simulation.erl @@ -22,7 +22,7 @@ %% https://gist.github.com/992317 -module(claim_simulation). --compile(export_all). +-compile([export_all, nowarn_export_all]). %%-define(SIMULATE,1). -ifdef(SIMULATE). diff --git a/test/riak_core_schema_tests.erl b/test/riak_core_schema_tests.erl index f83f8323e..1c47f41e2 100644 --- a/test/riak_core_schema_tests.erl +++ b/test/riak_core_schema_tests.erl @@ -1,7 +1,7 @@ -module(riak_core_schema_tests). -include_lib("eunit/include/eunit.hrl"). --compile(export_all). +-compile([export_all, nowarn_export_all]). %% basic schema test will check to make sure that all defaults from %% the schema make it into the generated app.config diff --git a/test/riak_core_security_tests.erl b/test/riak_core_security_tests.erl index 7e9ab126d..b2cce7c0a 100644 --- a/test/riak_core_security_tests.erl +++ b/test/riak_core_security_tests.erl @@ -1,5 +1,5 @@ -module(riak_core_security_tests). --compile(export_all). +-compile([export_all, nowarn_export_all]). -ifdef(TEST). -include_lib("eunit/include/eunit.hrl").