diff options
author | Björn Gustavsson <[email protected]> | 2016-04-26 06:03:09 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-04-27 14:43:04 +0200 |
commit | dcc09939afa80b6cca1e7e08d304ac88d012d1c5 (patch) | |
tree | d73c36c8cc420faaeb9f33e4947a6f72ef07e3b3 /lib/compiler/test/misc_SUITE.erl | |
parent | 9fddd89e347590aba3594829f904ea5211805958 (diff) | |
download | otp-dcc09939afa80b6cca1e7e08d304ac88d012d1c5.tar.gz otp-dcc09939afa80b6cca1e7e08d304ac88d012d1c5.tar.bz2 otp-dcc09939afa80b6cca1e7e08d304ac88d012d1c5.zip |
misc_SUITE: Add missing export of integer_encoding/0
The integer_encoding/1 test is supposed to be run with a tighter
timetrap ensure that encoding of integer in BEAM files is efficient
enough.
Diffstat (limited to 'lib/compiler/test/misc_SUITE.erl')
-rw-r--r-- | lib/compiler/test/misc_SUITE.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/compiler/test/misc_SUITE.erl b/lib/compiler/test/misc_SUITE.erl index 8f9ed685bf..f05fe6c943 100644 --- a/lib/compiler/test/misc_SUITE.erl +++ b/lib/compiler/test/misc_SUITE.erl @@ -23,7 +23,8 @@ init_per_group/2,end_per_group/2, init_per_testcase/2,end_per_testcase/2, tobias/1,empty_string/1,md5/1,silly_coverage/1, - confused_literals/1,integer_encoding/1,override_bif/1]). + confused_literals/1,integer_encoding/0,integer_encoding/1, + override_bif/1]). -include_lib("common_test/include/ct.hrl"). |