aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/h2specd_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/h2specd_SUITE.erl b/test/h2specd_SUITE.erl
index 79a51f4..99e0cd8 100644
--- a/test/h2specd_SUITE.erl
+++ b/test/h2specd_SUITE.erl
@@ -26,10 +26,10 @@ all() ->
init_per_suite(Config) ->
case os:getenv("H2SPECD") of
- false -> skip;
+ false -> {skip, "$H2SPECD isn't set."};
H2specd ->
case filelib:is_file(H2specd) of
- false -> skip;
+ false -> {skip, "$H2SPECD file not found."};
true ->
%% We ensure that SASL is started for this test suite
%% to have the crash reports in the CT logs.