Fix instructions for running tests on Windows
authorDmitry Kobets <89153909+dmitrykobets-msft@users.noreply.github.com>
Fri, 15 Dec 2023 04:12:43 +0000 (20:12 -0800)
committerTomas Mraz <tomas@openssl.org>
Mon, 18 Dec 2023 09:48:38 +0000 (10:48 +0100)
commit78df77685a0daf040cf1e134daffa023cf68d438
tree3a905d17c87b308b0f8d4d8421f09874306e44c4
parentb51644997862e08dc3dad158c8a916524e2000bf
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)

(cherry picked from commit cf424d1da05b3cd928c97596af08e260429b308c)
test/README.md