Home
last modified time | relevance | path

Searched refs:tests (Results 1 – 25 of 439) sorted by relevance

12345678910>>...18

/openssl/test/recipes/
H A D20-test_dhparam.t22 plan tests => 21;
99 plan tests => 4;
103 plan tests => 4;
107 plan tests => 4;
111 plan tests => 4;
115 plan tests => 4;
119 plan tests => 4;
123 plan tests => 4;
133 plan tests => 6;
139 plan tests => 6;
[all …]
H A D80-test_ocsp.t54 plan tests => 11;
57 plan tests => 7;
76 plan tests => 6;
93 plan tests => 6;
110 plan tests => 6;
127 plan tests => 6;
144 plan tests => 3;
155 plan tests => 6;
172 plan tests => 6;
189 plan tests => 6;
[all …]
H A D15-test_ecparam.t32 plan tests => 12;
69 plan tests => scalar(@valid);
74 plan tests => scalar(@valid);
79 plan tests => scalar(@valid);
84 plan tests => scalar(@noncanon);
89 plan tests => scalar(@noncanon);
94 plan tests => scalar(@noncanon);
99 plan tests => scalar(@invalid);
104 plan tests => scalar(@invalid);
109 plan tests => scalar(@invalid);
[all …]
H A D20-test_dgst.t20 plan tests => 14;
31 plan tests => 4;
63 plan tests => 5;
154 plan tests => 1;
169 plan tests => 2;
183 plan tests => 2;
197 plan tests => 2;
212 plan tests => 2;
226 plan tests => 2;
238 plan tests => 1;
[all …]
H A D30-test_evp_fetch_prov.t29 tests => [ { providers => [] },
47 tests => [
71 tests => [
96 $testcount += scalar @{$_->{tests}};
99 plan tests => 1 + $testcount * scalar(@types);
107 foreach my $test (@{$testcase->{tests}}) {
H A D25-test_req.t18 plan tests => 110;
67 plan tests => 3;
95 plan tests => 8;
151 plan tests => 12;
232 plan tests => 2;
252 plan tests => 2;
272 plan tests => 2;
292 plan tests => 2;
312 plan tests => 2;
325 plan tests => 4;
H A D80-test_cmp_http.t168 my $tests = shift;
170 my $n = scalar @$tests;
171 plan tests => $n;
173 foreach (@$tests) {
190 plan tests => 1 + @server_configurations * @all_aspects
214 my $tests = load_tests($server_name, $aspect);
215 test_cmp_http_aspect($server_name, $aspect, $tests);
/openssl/test/
H A DREADME.md30 Verbosity on failed (sub-)tests only
35 Verbosity on failed (sub-)tests, in addition progress on succeeded (sub-)tests
52 You can find the list of available tests like this:
75 tests (as listed when you do 'make list-tests' or similar).
85 set of tests.
89 tests is first assigned the whole set of available tests,
99 Run all tests except for the fuzz tests:
116 Run all tests except the slow group (group 99):
120 Run all tests in test groups 80 to 99 except for tests in group 90:
124 To run specific fuzz tests you can use for instance:
[all …]
H A DREADME-external.md20 $ ./config shared enable-external-tests
31 Some tests target older (<=1.0.2) versions so will not run. Other tests target
38 tests against the local OpenSSL build.
51 OpenSSL must be built with external tests enabled:
53 $ ./config enable-external-tests
66 tests are expected to fail.
72 tests against the local OpenSSL build.
78 Then configure/build OpenSSL enabling external tests:
80 $ ./config shared enable-external-tests
101 Then configure/build OpenSSL enabling external tests:
[all …]
H A Dmdc2_internal_test.c37 static TESTDATA tests[] = { variable
57 const TESTDATA testdata = tests[idx]; in test_mdc2()
75 ADD_ALL_TESTS(test_mdc2, OSSL_NELEM(tests)); in setup_tests()
H A Drun_tests.pl84 my %tests = ();
108 %tests = map { $_ => 1 } @alltests;
116 %tests = map { $_ => 1 } @alltests;
126 delete $tests{$test};
128 $tests{$test} = 1;
142 delete $tests{$test};
343 sort { reorder($a) cmp reorder($b) } keys %tests);
H A Dgenerate_ssl_tests.pl51 my $num = scalar @ssltests::tests;
54 foreach my $test (@ssltests::tests) {
116 foreach my $test (@ssltests::tests) {
124 foreach my $test (@ssltests::tests) {
H A Dbad_dtls_test.c454 } tests[] = { variable
568 for (i = 0; i < (int)OSSL_NELEM(tests); i++) { in test_bad_dtls()
571 if (!TEST_true(send_record(rbio, SSL3_RT_APPLICATION_DATA, tests[i].seq, in test_bad_dtls()
572 &tests[i].seq, sizeof(uint64_t)))) { in test_bad_dtls()
574 (unsigned int)(tests[i].seq >> 32), (unsigned int)tests[i].seq, i); in test_bad_dtls()
578 if (tests[i].drop) in test_bad_dtls()
584 (unsigned int)(tests[i].seq >> 32), (unsigned int)tests[i].seq, i); in test_bad_dtls()
587 if (!TEST_true(recv_buf[0] == tests[i].seq)) in test_bad_dtls()
592 if (!TEST_false(tests[i-1].drop)) in test_bad_dtls()
H A Dquic_srt_gen_test.c33 static const struct test_case tests[] = { variable
52 const struct test_case *t = &tests[idx]; in test_srt_gen()
81 ADD_ALL_TESTS(test_srt_gen, OSSL_NELEM(tests)); in setup_tests()
H A DREADME.ssltest.md1 SSL tests
4 SSL testcases are configured in the `ssl-tests` directory.
14 `test/ssl-tests/*.cnf` files.
16 For more details, see `ssl-tests/01-simple.cnf.in` for an example.
54 tests - see `SSL_CTX_set_max_send_fragment` for documentation). Applies to
224 ssl-tests/my.cnf.in default > ssl-tests/my.cnf
232 ssl-tests/01-simple.cnf.in default > ssl-tests/01-simple.cnf
248 Running the tests with the test harness
264 test/ssl-tests/01-simple.cnf default
269 util/wrap.pl test/ssl_test test/ssl-tests/01-simple.cnf default
[all …]
H A Dtime_offset_test.c34 static TESTDATA tests[] = { variable
70 const TESTDATA *testdata = &tests[idx]; in test_offset()
111 ADD_ALL_TESTS(test_offset, OSSL_NELEM(tests)); in setup_tests()
H A Dpkey_meth_kdf_test.c224 int tests = 1; in setup_tests() local
227 tests = 2; in setup_tests()
229 ADD_ALL_TESTS(test_kdf_tls1_prf, tests); in setup_tests()
230 ADD_ALL_TESTS(test_kdf_hkdf, tests); in setup_tests()
/openssl/test/recipes/95-test_external_tlsfuzzer_data/
H A Dcert.json.in3 "-key", "tests/serverX509Key.pem",
4 "-cert", "tests/serverX509Cert.pem",
5 "-verify", "1", "-CAfile", "tests/clientX509Cert.pem"],
10 "tests" : [ array
12 "arguments" : ["-k", "tests/clientX509Key.pem",
13 "-c", "tests/clientX509Cert.pem",
17 "arguments" : ["-k", "tests/serverECKey.pem",
18 "-c", "tests/serverECCert.pem",
24 "-key", "tests/serverX509Key.pem",
25 "-cert", "tests/serverX509Cert.pem"],
[all …]
/openssl/.github/workflows/
H A Dcross-compiles.yml29 # tests: omit this to run all the tests using QEMU, set it to "none"
32 # tests.
48 tests: none,
127 tests: none
132 tests: none
137 tests: none
142 tests: none
150 tests: none
203 - name: make all tests
209 - name: make some tests
[all …]
H A Dinterop-tests.yml6 name: Interoperability tests with GnuTLS and NSS
31 - name: install interop tests
34 … git clone --branch=openssl-v0.1 --depth=1 https://gitlab.com/redhat-crypto/tests/interop.git
48 - name: Run interop tests
51 …tmt run -av plans -n interop tests -f "tag: interop-openssl & tag: interop-$COMPONENT" provision -…
H A Dfuzz-checker.yml33 tests: -test_memleak
42 tests: -test_memleak
75 if: matrix.fuzzy.tests != ''
76 …un: AFL_MAP_SIZE=300000 make test HARNESS_JOBS=${HARNESS_JOBS:-4} TESTS="${{ matrix.fuzzy.tests }}"
78 if: matrix.fuzzy.tests == ''
/openssl/test/ssl-tests/
H A D04-client_auth.cnf.in28 our @tests = ();
58 push @tests, {
76 $tests[-1]{"test"}{"UseSCTP"} = "Yes" if $sctp;
79 push @tests, {
98 $tests[-1]{"test"}{"UseSCTP"} = "Yes" if $sctp;
101 push @tests, {
129 push @tests, {
159 push @tests, {
187 push @tests, {
218 push @tests, {
[all …]
H A Dprotocol_version.pm144 my @tests = ();
157 push @tests, {
175 $tests[-1]{"test"}{"UseSCTP"} = "Yes" if $sctp;
181 return @tests
188 push @tests, {
202 push @tests, {
218 return @tests;
H A D14-curves.cnf.in42 our @tests = ();
60 push @tests, {
81 push @tests, {
102 push @tests, {
126 push @tests, {
145 push @tests, {
164 push @tests, {
/openssl/external/perl/Text-Template-1.56/t/
H A Ddelimiters.t8 use Test::More tests => 19;
51 my @tests = (
72 while (my ($test, $result) = splice @tests, 0, 2) {

Completed in 37 milliseconds

12345678910>>...18