Lines Matching refs:test

7     $ make test                                      # Unix
8 $ mms test ! OpenVMS
9 $ nmake test # Windows
23 Full verbosity, showing full output of all successful and failed test cases
26 $ make V=1 test # Unix
27 $ mms /macro=(V=1) test ! OpenVMS
28 $ nmake V=1 test # Windows
33 $ make test VF=1
38 $ make test VFP=1
43 $ make TESTS='test_rsa test_dsa' test # Unix
44 $ mms/macro="TESTS=test_rsa test_dsa" test ! OpenVMS
45 $ nmake TESTS="test_rsa test_dsa" test # Windows
49 $ make test TESTS='test_rsa test_dsa' VF=1
50 $ make test TESTS="test_cmp_*" VFP=1
77 xxx Adds the test 'xxx' to the current set of tests.
84 nn Adds the test group 'nn' (which is a number) to the current
87 -nn Removes the test group 'nn' from the current set of tests.
101 $ make TESTS='-test_fuzz*' test
105 $ make TESTS='alltests -test_fuzz*' test
110 $ make TESTS='test_ssl* -test_ssl_*' test
112 Run only test group 10:
114 $ make TESTS='10' test
118 $ make TESTS='-99' test
120 Run all tests in test groups 80 to 99 except for tests in group 90:
122 $ make TESTS='[89]? -90' test
126 $ make test TESTS='test_fuzz_cmp test_fuzz_cms'
131 $ ./util/wrap.sh test/bntest -stochastic
136 By default the test harness will execute the selected tests sequentially.
137 Depending on the platform characteristics, running more than one test job in
138 parallel may speed up test execution.
140 positive integer value. This specifies the maximum number of test jobs to run in
144 which test recipes can be run in parallel. In recent versions of Perl, unless
150 $ make HARNESS_JOBS=4 test
155 Some tests use random numbers as part of the test. In some cases a test failure
161 When a test fails the test harness will display the seed used during the test
165 $ make OPENSSL_TEST_RAND_SEED=42 test
170 By default, the test harness will execute tests in the order they were added.
172 test ordering will be randomised. This additionally seeds the random number
174 ordered test fails, the seed value used will be reported. Setting the
176 tests in the same order and will also seed the test random number generator.
177 This assures repeatability of randomly ordered test runs. This repeatability is
180 To randomise the test ordering:
182 $ make OPENSSL_TEST_RAND_ORDER=0 test
186 $ make OPENSSL_TEST_RAND_ORDER=42 test