diff options
author | Björn Gustavsson <[email protected]> | 2013-02-16 09:11:27 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-02-16 09:11:27 +0100 |
commit | 71c653f463069d1ab4ddd502a13c4171188253f9 (patch) | |
tree | 97fe38f73cd7b7daa4351bc90fdced162878321f /erts/test | |
parent | ae4af895501c5113fafc3c416988ce042ee09961 (diff) | |
download | otp-71c653f463069d1ab4ddd502a13c4171188253f9.tar.gz otp-71c653f463069d1ab4ddd502a13c4171188253f9.tar.bz2 otp-71c653f463069d1ab4ddd502a13c4171188253f9.zip |
asn1ct: Eliminate use of obsolete size/1
Also teach otp_SUITE:call_to_size/1 that calls to size/1 is no
longer allowed within the asn1 application.
Diffstat (limited to 'erts/test')
-rw-r--r-- | erts/test/otp_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/test/otp_SUITE.erl b/erts/test/otp_SUITE.erl index 51f07b5432..374255bbe6 100644 --- a/erts/test/otp_SUITE.erl +++ b/erts/test/otp_SUITE.erl @@ -273,7 +273,7 @@ call_to_size_1(Config) when is_list(Config) -> Server = ?config(xref_server, Config), %% Applications that do not call erlang:size/1: - Apps = [compiler,debugger,kernel,observer,parsetools, + Apps = [asn1,compiler,debugger,kernel,observer,parsetools, runtime_tools,stdlib,tools,webtool], Fs = [{erlang,size,1}], |