diff options
author | Bruno Haible <bruno@clisp.org> | 2021-09-19 01:42:20 +0200 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2021-09-19 01:42:38 +0200 |
commit | 9dbf2816fd77fbd502b58d03f9f67e4894f8d78f (patch) | |
tree | 4ae1ba036f821baf0d6b391abeea0ff4f22cdda9 /modules/crypto/sha512-tests | |
parent | 2b6d343ff9f3a536054024c233ff46c2d19e598e (diff) | |
download | gnulib-9dbf2816fd77fbd502b58d03f9f67e4894f8d78f.tar.gz |
sha512-buffer tests: New module.
* tests/test-sha512-stream.c: Renamed from tests/test-sha512.c.
* modules/crypto/sha512-buffer-tests: New file, based on
modules/crypto/sha512-tests.
* modules/crypto/sha512-tests: Remove tests that are now in
modules/crypto/sha512-buffer-tests. Test tests/test-sha512-stream.c
instead of tests/test-sha512.c.
Diffstat (limited to 'modules/crypto/sha512-tests')
-rw-r--r-- | modules/crypto/sha512-tests | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/modules/crypto/sha512-tests b/modules/crypto/sha512-tests index fba9dc5388..9efe7d234e 100644 --- a/modules/crypto/sha512-tests +++ b/modules/crypto/sha512-tests @@ -1,22 +1,14 @@ Files: -tests/test-sha512.c +tests/test-sha512-stream.c tests/test-digest.h -tests/bench-sha384.c -tests/bench-sha512.c -tests/bench-digest.h tests/macros.h Depends-on: c99 -getrusage -gettimeofday configure.ac: Makefile.am: -TESTS += test-sha512 -check_PROGRAMS += test-sha512 -noinst_PROGRAMS += bench-sha384 bench-sha512 -test_sha512_LDADD = $(LDADD) @LIB_CRYPTO@ -bench_sha384_LDADD = $(LDADD) @LIB_CRYPTO@ -bench_sha512_LDADD = $(LDADD) @LIB_CRYPTO@ +TESTS += test-sha512-stream +check_PROGRAMS += test-sha512-stream +test_sha512_stream_LDADD = $(LDADD) @LIB_CRYPTO@ |