summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gudmundsson <dgud@erlang.org>2017-09-15 11:30:04 +0200
committerDan Gudmundsson <dgud@erlang.org>2017-09-15 11:30:04 +0200
commit4501b5e00786366dcbc97f9c662a5617c325a169 (patch)
tree3b099f5d3e437d853f07d431c92c89d83bb3fe7d
parent91a6512718034889851e12db699f7bb14971ca93 (diff)
downloaderlang-4501b5e00786366dcbc97f9c662a5617c325a169.tar.gz
et: Remove export_all warnings in test
-rw-r--r--lib/et/test/et_test_lib.erl2
-rw-r--r--lib/et/test/ett.erl2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/et/test/et_test_lib.erl b/lib/et/test/et_test_lib.erl
index df2c308b28..fc469f646a 100644
--- a/lib/et/test/et_test_lib.erl
+++ b/lib/et/test/et_test_lib.erl
@@ -18,7 +18,7 @@
%% %CopyrightEnd%
-module(et_test_lib).
--compile(export_all).
+-compile([export_all, nowarn_export_all]).
-include("et_test_lib.hrl").
diff --git a/lib/et/test/ett.erl b/lib/et/test/ett.erl
index b1b769b7ac..2b276eab1a 100644
--- a/lib/et/test/ett.erl
+++ b/lib/et/test/ett.erl
@@ -18,7 +18,7 @@
%% %CopyrightEnd%
-module(ett).
--compile(export_all).
+-compile([export_all, nowarn_export_all]).
%% Modules or suites can be shortcuts, for example wx expands to et_wx_SUITE.
%%