]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
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:48 +0000 (10:48 +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)

(cherry picked from commit cf424d1da05b3cd928c97596af08e260429b308c)

test/README.md

index 9a5c91953ddb78e78648749fde98e52daf45a2c9..14ce32ecd62e5a2218fc386bb3a662c0ea4c36ad 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):