From 84c89d4618f8d8fe34784f105624036c734d4d7c Mon Sep 17 00:00:00 2001 From: tb <> Date: Mon, 3 May 2021 14:49:37 +0000 Subject: Prefix the hybrid_corner_case test with test_ for consistency. --- src/regress/lib/libcrypto/ec/ec_point_conversion.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/regress/lib/libcrypto/ec/ec_point_conversion.c b/src/regress/lib/libcrypto/ec/ec_point_conversion.c index 2c15f38135..9bd78847da 100644 --- a/src/regress/lib/libcrypto/ec/ec_point_conversion.c +++ b/src/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 * Copyright (c) 2021 Joel Sing @@ -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"); -- cgit v1.2.3-55-g6feb