diff options
author | Linus Nordberg <linus@nordu.net> | 2016-03-27 19:27:30 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2016-03-27 19:44:25 +0200 |
commit | 56d70baa79ae5907b11445364bbea9b31ee4cd20 (patch) | |
tree | ef0403255a04de75736da82385d282a0198c52c2 /test | |
parent | 9f723f6f1d79c1be460ece10555945346045b175 (diff) |
WIP
Diffstat (limited to 'test')
-rwxr-xr-x | test/check.erl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/check.erl b/test/check.erl index b538346..2cb388c 100755 --- a/test/check.erl +++ b/test/check.erl @@ -1,11 +1,12 @@ #! /usr/bin/env escript %% -*- erlang -*- mode -%%! -pa ebin -pa ../lager/ebin -pa ../lager/deps/goldrush/ebin -pa ../mochiweb/ebin -config test/config/check.config +%%! -pa ebin -pa ../lager/ebin -pa ../lager/deps/goldrush/ebin -pa ../mochiweb/ebin -s lager -config test/config/check.config -%% To enable logging, pass `-s lager' by adding it to the line above. +%% To enable logging, pass `-s lager' to erlang by adding it to the +%% %%!-line above. %% Tweak the amount of logging by changing `lager_console_backend' in %% config/check.config. main(_) -> - ok = x509:test(), + ok = dnssecport:test(). ok = catlfish:test(). |