Skip to content

Commit

Permalink
Fix instructions for running tests on Windows
Browse files Browse the repository at this point in the history
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 #23059)
  • Loading branch information
dmitrykobets-msft authored and t8m committed Dec 18, 2023
1 parent e454233 commit cf424d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):

Expand Down

0 comments on commit cf424d1

Please sign in to comment.