summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Kobets <89153909+dmitrykobets-msft@users.noreply.github.com>2023-12-14 20:12:43 -0800
committerTomas Mraz <tomas@openssl.org>2023-12-18 10:48:48 +0100
commit9a7f83ef651cfb42366629edc6e3a641d9975d50 (patch)
tree72d592395f5015e4c6f364ac969c90bd8e3e3a5c
parent7481cb4e0357e4ec80b4c9c281ae3a8307f432e2 (diff)
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)
-rw-r--r--test/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/README.md b/test/README.md
index 9a5c91953d..14ce32ecd6 100644
--- a/test/README.md
+++ b/test/README.md
@@ -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):