summaryrefslogtreecommitdiff
path: root/regress/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2021-05-03 14:49:38 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2021-05-03 14:49:38 +0000
commitf542046b7ba31599f4ddec2fc0d7079840511236 (patch)
tree5a639767c8b42a372a7a27c5dceec1ce4f27f595 /regress/lib
parentffac21d2859449126704f99097dc41b030ee8309 (diff)
Prefix the hybrid_corner_case test with test_ for consistency.
Diffstat (limited to 'regress/lib')
-rw-r--r--regress/lib/libcrypto/ec/ec_point_conversion.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/lib/libcrypto/ec/ec_point_conversion.c b/regress/lib/libcrypto/ec/ec_point_conversion.c
index 2c15f38135f..9bd78847dad 100644
--- a/regress/lib/libcrypto/ec/ec_point_conversion.c
+++ b/regress/lib/libcrypto/ec/ec_point_conversion.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ec_point_conversion.c,v 1.3 2021/05/03 14:48:10 tb Exp $ */
+/* $OpenBSD: ec_point_conversion.c,v 1.4 2021/05/03 14:49:37 tb Exp $ */
/*
* Copyright (c) 2021 Theo Buehler <tb@openbsd.org>
* Copyright (c) 2021 Joel Sing <jsing@openbsd.org>
@@ -110,7 +110,7 @@ roundtrip(EC_GROUP *group, EC_POINT *point, int form, BIGNUM *x, BIGNUM *y)
}
static int
-hybrid_corner_case(void)
+test_hybrid_corner_case(void)
{
BIGNUM *x = NULL, *y = NULL;
EC_GROUP *group;
@@ -879,7 +879,7 @@ main(int argc, char **argv)
int failed = 0;
failed |= test_random_points();
- failed |= hybrid_corner_case();
+ failed |= test_hybrid_corner_case();
failed |= test_point_conversions();
fprintf(stderr, "%s\n", failed ? "FAILED" : "SUCCESS");