Skip to content

Commit

Permalink
Skip create_big_boot on platforms without crypto
Browse files Browse the repository at this point in the history
This has to be done as many other applications depend
on that crypto is present.
  • Loading branch information
garazdawi committed Sep 29, 2011
1 parent bb98bf8 commit d41617d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/kernel/test/code_SUITE.erl
Expand Up @@ -81,6 +81,13 @@ init_per_suite(Config) ->
end_per_suite(Config) ->
Config.

init_per_testcase(big_boot_embedded, Config) ->
case catch crypto:start() of
ok ->
init_per_testcase(do_big_boot_embedded, Config);
_Else ->
{skip, "Needs crypto!"}
end;
init_per_testcase(_Func, Config) ->
Dog=?t:timetrap(?t:minutes(5)),
P=code:get_path(),
Expand Down

0 comments on commit d41617d

Please sign in to comment.