Fix instructions for running tests on Windows

In the command `nmake TEST='foo' test`, on Windows the runner
will look for test `'foo'` and complain about the test not being found
(due to the extraneous single quotes), whereas with `nmake TEST="foo" test`,
the test `foo` will be correctly found.

CLA: trivial

Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/23059)
This commit is contained in:
Dmitry Kobets 2023-12-14 20:12:43 -08:00 committed by Tomas Mraz
parent e4542332fa
commit cf424d1da0
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ the make variable TESTS to specify them, like this:
$ make TESTS='test_rsa test_dsa' test # Unix
$ mms/macro="TESTS=test_rsa test_dsa" test ! OpenVMS
$ nmake TESTS='test_rsa test_dsa' test # Windows
$ nmake TESTS="test_rsa test_dsa" test # Windows
And of course, you can combine (Unix examples shown):