From 6e623fe12caba9dbd13a1d5ccae73e1dd4182db2 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Sun, 11 Sep 2022 11:31:28 -0700 Subject: [PATCH] document how to run tests... This caught a miscompile on FreeBSD that was addressed in 1e2700755 --- python/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/python/README.md b/python/README.md index 0a1d7ac..be8eeae 100644 --- a/python/README.md +++ b/python/README.md @@ -6,6 +6,16 @@ The easiest way to install is to run the command: pip install 'git+https://git.code.sf.net/p/ed448goldilocks/code#egg=edgold&subdirectory=python' ``` +After installation, the tests can be run: +``` +python -m unittest edgold.ed448 +``` + +This helps ensure that the correct architecture was detected when +compiling, and that the code works. It include a couple test vectors +from the RFC, along with verifying that the code can properly interact +with the library. + Usage -----