1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2001-2011. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
%% compliance with the License. You should have received a copy of the
%% Erlang Public License along with this software. If not, it can be
%% retrieved online at http://www.erlang.org/.
%%
%% Software distributed under the License is distributed on an "AS IS"
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
%% the License for the specific language governing rights and limitations
%% under the License.
%%
%% %CopyrightEnd%
%%
%%
-module(debugger_SUITE).
%% Test break points.
-include_lib("test_server/include/test_server.hrl").
-export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1,
init_per_group/2,end_per_group/2,
init_per_testcase/2,end_per_testcase/2,
app_test/1,appup_test/1,erts_debug/1,encrypted_debug_info/1,
no_abstract_code/1]).
suite() -> [{ct_hooks,[ts_install_cth]}].
all() ->
[app_test, appup_test, erts_debug, no_abstract_code,
encrypted_debug_info].
groups() ->
[].
init_per_suite(Config) ->
Config.
end_per_suite(_Config) ->
ok.
init_per_group(_GroupName, Config) ->
Config.
end_per_group(_GroupName, Config) ->
Config.
init_per_testcase(_Case, Config) ->
Dog=test_server:timetrap(?t:minutes(0.5)),
[{watchdog, Dog}|Config].
end_per_testcase(_Case, Config) ->
Dog=?config(watchdog, Config),
test_server:timetrap_cancel(Dog),
ok.
app_test(Config) when is_list(Config) ->
?line ?t:app_test(debugger),
ok.
appup_test(Config) when is_list(Config) ->
ok = ?t:appup_test(debugger).
erts_debug(Config) when is_list(Config) ->
c:l(erts_debug),
ok.
no_abstract_code(Config) when is_list(Config) ->
?line PrivDir = ?config(priv_dir, Config),
?line Simple = filename:join(PrivDir, "simple"),
?line Source = Simple ++ ".erl",
?line BeamFile = Simple ++ ".beam",
?line simple_file(Source),
%% Compile module without abstract code.
CompileFlags = [{outdir,PrivDir}],
?line {ok,_} = compile:file(Source, CompileFlags),
?line error = int:i(Simple),
%% Cleanup.
?line ok = file:delete(Source),
?line ok = file:delete(BeamFile),
ok.
encrypted_debug_info(Config) when is_list(Config) ->
try begin crypto:start(), crypto:info(), crypto:stop(), ok end of
ok ->
encrypted_debug_info_1(Config)
catch
error:_ ->
{skip,"The crypto application is missing or broken"}
end.
encrypted_debug_info_1(Config) ->
?line PrivDir = ?config(priv_dir, Config),
?line Simple = filename:join(PrivDir, "simple"),
?line Source = Simple ++ ".erl",
?line BeamFile = Simple ++ ".beam",
?line simple_file(Source),
%% Compile module.
Key = "_This a Crypto Key_",
CompileFlags = [{outdir,PrivDir},debug_info,{debug_info_key,Key}],
?line {ok,_} = compile:file(Source, CompileFlags),
%% Interpret module
?line ok = beam_lib:crypto_key_fun(simple_crypto_fun(Key)),
?line {module,simple} = int:i(Simple),
%% Remove key.
?line {ok,_} = beam_lib:clear_crypto_key_fun(),
?line error = int:i(Simple),
%% Cleanup.
?line ok = file:delete(Source),
?line ok = file:delete(BeamFile),
ok.
simple_crypto_fun(Key) ->
fun(init) -> ok;
({debug_info, des3_cbc, simple, _}) -> Key
end.
simple_file(File) ->
simple_file(File, simple).
simple_file(File, Module) ->
simple_file(File, Module, member).
simple_file(File, Module, F) ->
B = list_to_binary(["-module(", atom_to_list(Module), "). "
"-export([t/0]). "
"t() -> "
" t([]). "
"t(L) -> "
" lists:",
atom_to_list(F), "(a, L). "]),
ok = file:write_file(File, B).
|