diff options
author | Björn Gustavsson <[email protected]> | 2016-12-02 12:59:33 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-12-02 12:59:33 +0100 |
commit | d54c12c305425f6126e0fab0b024560df72efb27 (patch) | |
tree | 3af7942ab96fc8c9713554ba9eadf8ec658a2dc9 /lib/diameter/test | |
parent | 27608cfe95d155e56b0cc7503bf910e9b23cd225 (diff) | |
parent | 13838af02bc54db57264c4f198bc819809d65481 (diff) | |
download | otp-d54c12c305425f6126e0fab0b024560df72efb27.tar.gz otp-d54c12c305425f6126e0fab0b024560df72efb27.tar.bz2 otp-d54c12c305425f6126e0fab0b024560df72efb27.zip |
Merge branch 'richcarl/default-compiler-flags/PR-1226/OTP-14071'
* richcarl/default-compiler-flags/PR-1226/OTP-14071:
stdlib test suite: fix uses of export_all
diameter tests: Eliminate use of -compile(export_all)
asn1 test suite: Suppress warnings for -compile(export_all)
Remove left-over uses of -compile(export_all)
Make warn_export_all the default
warn_obsolete_guard is already default
Diffstat (limited to 'lib/diameter/test')
-rw-r--r-- | lib/diameter/test/diameter_capx_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/diameter/test/diameter_capx_SUITE.erl b/lib/diameter/test/diameter_capx_SUITE.erl index ed6641b9fb..c77d46f27a 100644 --- a/lib/diameter/test/diameter_capx_SUITE.erl +++ b/lib/diameter/test/diameter_capx_SUITE.erl @@ -384,7 +384,7 @@ load_dict(N) -> A3 = erl_anno:new(3), A4 = erl_anno:new(4), Forms = [{attribute, A1, module, Mod}, - {attribute, A2, compile, [export_all]}, + {attribute, A2, export, [{id,0}]}, {function, A3, id, 0, [{clause, A4, [], [], [{integer, A4, N}]}]}], {ok, Mod, Bin, []} = compile:forms(Forms, [return]), |