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)
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

index fe25bd8b4ecbf13c874114a94d6ff20386f17edb..746a0156ceeaef65637a5b9a794798581a4bb90f 100644 (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):