diff options
author | Dan Gudmundsson <[email protected]> | 2017-09-18 11:26:24 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2017-09-18 11:26:24 +0200 |
commit | 83a66e961f043720c9d353923baaefb6f5e8ed96 (patch) | |
tree | c9886fe0e0c4265b80fd2f9115e191001385b6c6 /lib/wx/test/wx_app_SUITE.erl | |
parent | 0e8d50bd2f25910559f54295a05a2a7fc6bf9c6f (diff) | |
parent | f4a7f8a1f617e46653267bb18b9f7f635437d6d1 (diff) | |
download | otp-83a66e961f043720c9d353923baaefb6f5e8ed96.tar.gz otp-83a66e961f043720c9d353923baaefb6f5e8ed96.tar.bz2 otp-83a66e961f043720c9d353923baaefb6f5e8ed96.zip |
Merge branch 'maint'
* maint:
reltool: Remove export_all warning in tests
et: Remove export_all warnings in test
mnesia: Remove export_all in tests
wx: Remove export_all in example code
wx: test remove export_all
wx: Update doc, OpenGL external links
wx: Reduce Opengl docs
Diffstat (limited to 'lib/wx/test/wx_app_SUITE.erl')
-rw-r--r-- | lib/wx/test/wx_app_SUITE.erl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/wx/test/wx_app_SUITE.erl b/lib/wx/test/wx_app_SUITE.erl index 3fd5bf689d..a5202d8448 100644 --- a/lib/wx/test/wx_app_SUITE.erl +++ b/lib/wx/test/wx_app_SUITE.erl @@ -24,7 +24,12 @@ %%---------------------------------------------------------------------- -module(wx_app_SUITE). --compile(export_all). +-export([all/0, suite/0,groups/0,init_per_group/2,end_per_group/2, + init_per_suite/1, end_per_suite/1, + init_per_testcase/2, end_per_testcase/2]). + +-export([t/0, t/1, fields/1, modules/1, exportall/1, app_depend/1, + undef_funcs/0, undef_funcs/1, appup/1]). -include("wx_test_lib.hrl"). -include_lib("common_test/include/ct.hrl"). |