Merge pull request #6346
dbfa4f8
unit_tests: fix missing test names (xiphon)
This commit is contained in:
commit
bf70696a85
|
@ -123,7 +123,7 @@ static void test_keccak_hmac(const size_t * chunks)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
TEST(keccak_hmac, )
|
TEST(keccak_hmac, nullptr)
|
||||||
{
|
{
|
||||||
test_keccak_hmac(nullptr);
|
test_keccak_hmac(nullptr);
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,10 +54,6 @@ extern "C" {
|
||||||
keccak_finish(&ctx, md1); \
|
keccak_finish(&ctx, md1); \
|
||||||
ASSERT_EQ(memcmp(md0, md1, 32), 0);
|
ASSERT_EQ(memcmp(md0, md1, 32), 0);
|
||||||
|
|
||||||
TEST(keccak, )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST(keccak, 0_and_0)
|
TEST(keccak, 0_and_0)
|
||||||
{
|
{
|
||||||
static const size_t chunks[] = {0};
|
static const size_t chunks[] = {0};
|
||||||
|
|
Loading…
Reference in New Issue