diff options
author | 0xFFFC0000 <0xFFFC0000@proton.me> | 2023-06-12 08:29:35 +0330 |
---|---|---|
committer | 0xFFFC0000 <0xFFFC0000@proton.me> | 2023-06-12 08:29:35 +0330 |
commit | 6bae91304e6439ffbae4d625e573559767325497 (patch) | |
tree | ea316e9d8724c83098875770c9fe4e9c1eed4262 /tests/README.md | |
parent | Merge pull request #8842 (diff) | |
download | monero-6bae91304e6439ffbae4d625e573559767325497.tar.xz |
Tests: Add blake2b Test Cases for hash testing.
* Adding blake2b test function to src/tests/hash
* New files for testvector.
* Adding the test to CMakeLists.txt
* Adding brief documentation for the test.
Diffstat (limited to 'tests/README.md')
-rw-r--r-- | tests/README.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/README.md b/tests/README.md index c63294e9b..13519846d 100644 --- a/tests/README.md +++ b/tests/README.md @@ -108,6 +108,12 @@ ctest To run the same tests on a release build, replace `debug` with `release`. +To run specific hash test, you can use `ctest` `-R` parameter. For exmaple to run only `blake2b` hash tests: + +``` +ctest -R hash-blake2b +``` + # Libwallet API tests [TODO] @@ -155,3 +161,4 @@ When writing new tests, please implement all functions in `.cpp` or `.c` files, ## Writing fuzz tests [TODO] +hash |