From 13db42aac8e66315edd52fd2901ac1666ebf38b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 10 Jan 2019 22:47:32 +0100 Subject: Fix init_per_suite return value for skipping --- test/h2specd_SUITE.erl | 4 ++-- 1 file 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. -- cgit v1.2.3