]> git.ipfire.org Git - thirdparty/openssl.git/commit
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:47:31 +0000 (10:47 +0100)
commitcf424d1da05b3cd928c97596af08e260429b308c
tree65bfe8ade12431eac03768f32e7ffc79afaea88f
parente4542332fa36eab6d6bbf33815bde433ade3b547
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)
test/README.md