aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/README.md
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-08 23:40:11 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-08 23:40:11 +0300
commit6541ca090361af2811f69d74df0d0854f3ba2922 (patch)
tree982283aac09abd48b5c8a035eaf45b8ffce53876 /test/README.md
parenttest/800-38a.py: bugfix (diff)
downloadaes-tools-6541ca090361af2811f69d74df0d0854f3ba2922.tar.gz
aes-tools-6541ca090361af2811f69d74df0d0854f3ba2922.zip
test: refactoring
* Test vectors are now stored in the Python script rather than in a JSON file. * The tests are now really Python's unittest `TestCase`s, allowing (at least in the future) to discover and run them automatically. * Use logging from the standard library for logging. * Bugfix & refactoring.
Diffstat (limited to 'test/README.md')
-rw-r--r--test/README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/README.md b/test/README.md
index f49979a..b195db6 100644
--- a/test/README.md
+++ b/test/README.md
@@ -55,5 +55,6 @@ using
python 800-32a.py -r C:\build\test\Debug -e
-I've tried to make the script output self-explanatory.
-The ultimate goal is to get `No mismatches detected!` in the final line.
+You can investigate what went wrong (if it did) by logging calls to the `*_encrypt.exe` and `*_decrypt.exe` utilities by passing the `--log/-l FILENAME` option to the script.
+
+The tests are really Python's `unittest` `TestCase`s, so the output of the script should be self-explanatory and familiary to users with prior Python testing experience.