diff options
author | Chih-Hung Hsieh <[email protected]> | 2015-09-04 12:04:11 -0700 |
---|---|---|
committer | Mark Wielaard <[email protected]> | 2015-09-07 23:51:35 +0200 |
commit | 4cb8f6196201a88d20f4a47fafaf0ae4e3cfa7a0 (patch) | |
tree | d5e9a1dbe201e9166c6827cae2ad23d96839ba72 | |
parent | f6b93914662566bbbb974cc85ef686a9f6b41a42 (diff) |
tests: Remove unused static const variables in md5-sha1-test.c.
Signed-off-by: Chih-Hung Hsieh <[email protected]>
Signed-off-by: Mark Wielaard <[email protected]>
-rw-r--r-- | tests/ChangeLog | 5 | ||||
-rw-r--r-- | tests/md5-sha1-test.c | 8 |
2 files changed, 5 insertions, 8 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index 99b4d8f1..44a8f045 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,5 +1,10 @@ 2015-09-04 Chih-Hung Hsieh <[email protected]> + * md5-sha1-test.c (md5_expected): Removed. + (sha1_expected): Likewise. + +2015-09-04 Chih-Hung Hsieh <[email protected]> + * asm-tst1.c (main): Replace %Z length modifier with %z. * asm-tst2.c (main): Likewise. * asm-tst3.c (main): Likewise. diff --git a/tests/md5-sha1-test.c b/tests/md5-sha1-test.c index 49de0785..d50355e9 100644 --- a/tests/md5-sha1-test.c +++ b/tests/md5-sha1-test.c @@ -61,14 +61,6 @@ static const struct expected #define md5_size 16 #define sha1_size 20 -static const char md5_expected[] = - { - }; - -static const char sha1_expected[] = - { - }; - #define TEST_HASH(ALGO, I) \ { \ struct ALGO##_ctx ctx; \ |