File 0906-ssh-test-Start-crypto-in-init_suite-in-ssh_property_.patch of Package erlang
From 220aab6660ac8a5bff76de9032f4238a2843e06f Mon Sep 17 00:00:00 2001
From: Hans Nilsson <hans@erlang.org>
Date: Wed, 13 Nov 2019 16:26:18 +0100
Subject: [PATCH 4/6] ssh/test: Start crypto in init_suite in
ssh_property_test_SUITE
---
lib/ssh/test/ssh_property_test_SUITE.erl | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/lib/ssh/test/ssh_property_test_SUITE.erl b/lib/ssh/test/ssh_property_test_SUITE.erl
index 4da0b7b44c..4290ec1487 100644
--- a/lib/ssh/test/ssh_property_test_SUITE.erl
+++ b/lib/ssh/test/ssh_property_test_SUITE.erl
@@ -36,6 +36,8 @@
-compile(export_all).
-include_lib("common_test/include/ct.hrl").
+-include("ssh_test_lib.hrl").
+
all() -> [{group, messages},
client_sends_info_timing,
@@ -54,7 +56,9 @@ groups() ->
%%% First prepare Config and compile the property tests for the found tool:
init_per_suite(Config) ->
- ct_property_test:init_per_suite(Config).
+ ?CHECK_CRYPTO(
+ ct_property_test:init_per_suite(Config)
+ ).
end_per_suite(_Config) ->
ok.
--
2.16.4