summaryrefslogtreecommitdiff
path: root/test/testutil.h
diff options
context:
space:
mode:
authorDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2017-10-31 00:10:06 +0100
committerRichard Levitte <levitte@openssl.org>2017-10-31 11:35:54 +0100
commite433ac3c4f6dda1c77bc245ca0abb56970f67d5a (patch)
tree508948fe504c993a30ddf48b0b143ef445208d5d /test/testutil.h
parent3ba70235be29cc39df7d859df2894c9de2961019 (diff)
downloadopenssl-new-e433ac3c4f6dda1c77bc245ca0abb56970f67d5a.tar.gz
testutil.h: Remove duplicate test macros
A block of six TEST_int_xy() macro definitions was duplicated. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4624)
Diffstat (limited to 'test/testutil.h')
-rw-r--r--test/testutil.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/testutil.h b/test/testutil.h
index 1e18ea11a3..006bfb3a68 100644
--- a/test/testutil.h
+++ b/test/testutil.h
@@ -294,13 +294,6 @@ void test_perror(const char *s);
# define TEST_int_gt(a, b) test_int_gt(__FILE__, __LINE__, #a, #b, a, b)
# define TEST_int_ge(a, b) test_int_ge(__FILE__, __LINE__, #a, #b, a, b)
-# define TEST_int_eq(a, b) test_int_eq(__FILE__, __LINE__, #a, #b, a, b)
-# define TEST_int_ne(a, b) test_int_ne(__FILE__, __LINE__, #a, #b, a, b)
-# define TEST_int_lt(a, b) test_int_lt(__FILE__, __LINE__, #a, #b, a, b)
-# define TEST_int_le(a, b) test_int_le(__FILE__, __LINE__, #a, #b, a, b)
-# define TEST_int_gt(a, b) test_int_gt(__FILE__, __LINE__, #a, #b, a, b)
-# define TEST_int_ge(a, b) test_int_ge(__FILE__, __LINE__, #a, #b, a, b)
-
# define TEST_uint_eq(a, b) test_uint_eq(__FILE__, __LINE__, #a, #b, a, b)
# define TEST_uint_ne(a, b) test_uint_ne(__FILE__, __LINE__, #a, #b, a, b)
# define TEST_uint_lt(a, b) test_uint_lt(__FILE__, __LINE__, #a, #b, a, b)