diff options
author | Loïc Hoguin <[email protected]> | 2019-01-10 22:47:32 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2019-01-10 22:47:32 +0100 |
commit | 13db42aac8e66315edd52fd2901ac1666ebf38b6 (patch) | |
tree | 00e5ab91b2e49e4f4d67e0fd674165f8c11e7f48 /test/h2specd_SUITE.erl | |
parent | 09ccac4d9cee514b13feaaa4e5eea7e57779067f (diff) | |
download | gun-13db42aac8e66315edd52fd2901ac1666ebf38b6.tar.gz gun-13db42aac8e66315edd52fd2901ac1666ebf38b6.tar.bz2 gun-13db42aac8e66315edd52fd2901ac1666ebf38b6.zip |
Fix init_per_suite return value for skipping
Diffstat (limited to 'test/h2specd_SUITE.erl')
-rw-r--r-- | test/h2specd_SUITE.erl | 4 |
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. |