diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-24 05:22:14 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-24 05:22:14 +0300 |
commit | 606c6b47a12842c7a87ac17b8a4f0762f86d603e (patch) | |
tree | ab730cae9edf1e82b24991142ae1c62f3e20d653 /test/README.md | |
parent | add missing extern "C" { (diff) | |
download | aes-tools-606c6b47a12842c7a87ac17b8a4f0762f86d603e.tar.gz aes-tools-606c6b47a12842c7a87ac17b8a4f0762f86d603e.zip |
test: locate executables in PATH
Diffstat (limited to 'test/README.md')
-rw-r--r-- | test/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/README.md b/test/README.md index a10b13a..e05b840 100644 --- a/test/README.md +++ b/test/README.md @@ -33,7 +33,7 @@ You must therefore make sure that * all the tests succeeded, * and the skipped tests were skipped for a good reason. -To pass a path to the directory with the required utilities, use the `--root` parameter. +To pass a path to the directory with the required utilities, use the `--path` parameter. To make scripts run the utilities using Intel SDE, pass `--sde`. Use `--help` to see the script's usage details. @@ -41,11 +41,11 @@ Use `--help` to see the script's usage details. To test the implementation against the vectors from [NIST SP 800-38A](http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf) using `nist-sp-800-32a.py`. - python nist-sp-800-38a.py -r C:\build\test\Debug + python nist-sp-800-38a.py -p C:\build\test\Debug ### Cryptographic Algorithm Validation Program To test the implementation against the vectors from [CAVP](http://csrc.nist.gov/groups/STM/cavp/) using `cavp.py`. The AES Known Answer Test (KAT) Vectors are used and read from `KAT_AES.zip`. - python cavp.py -r C:\build\test\Debug + python cavp.py -p C:\build\test\Debug |