From e72cc74f0017df8f0260dffd8a80d706c6361a6c Mon Sep 17 00:00:00 2001 From: Kris Kwiatkowski Date: Sat, 10 Jul 2021 00:55:39 +0100 Subject: [PATCH] change names of some tests --- test/ct.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/ct.cpp b/test/ct.cpp index e30746f6..4044092b 100644 --- a/test/ct.cpp +++ b/test/ct.cpp @@ -4,7 +4,7 @@ #include #include -TEST(ConstantTime, CtGrind_Negative) { +TEST(ConstantTime, CtCheck_Negative) { unsigned char a[16], b[16]; unsigned i; memset(a, 42, 16); @@ -24,7 +24,7 @@ TEST(ConstantTime, CtGrind_Negative) { ASSERT_EQ(a[0], b[0]); } -TEST(ConstantTime, CtGrind_Positive_NoAccess) { +TEST(ConstantTime, CtCheck_Positive_NoAccess) { unsigned i; char result = 0; unsigned char a[16], b[16]; @@ -45,7 +45,7 @@ TEST(ConstantTime, CtGrind_Positive_NoAccess) { } -TEST(ConstantTime, CtGrind_Negative_UseSecretAsIndex) { +TEST(ConstantTime, CtCheck_Negative_UseSecretAsIndex) { static const unsigned char tab[2] = {1, 0}; unsigned char a[16]; unsigned char result;