From: Nick Mathewson Date: Tue, 16 Sep 2014 01:28:26 +0000 (-0400) Subject: remove two unused test_* macros X-Git-Tag: tor-0.2.6.1-alpha~113^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e0cef1d60c02e6e88f5dc0deb26074800c1f455;p=thirdparty%2Ftor.git remove two unused test_* macros --- diff --git a/src/test/test.h b/src/test/test.h index 5d0c062ae6..d3464111f5 100644 --- a/src/test/test.h +++ b/src/test/test.h @@ -25,9 +25,7 @@ #define test_assert(expr) tt_assert(expr) #define test_eq(expr1, expr2) tt_int_op((expr1), ==, (expr2)) -#define test_neq(expr1, expr2) tt_int_op((expr1), !=, (expr2)) #define test_streq(expr1, expr2) tt_str_op((expr1), ==, (expr2)) -#define test_strneq(expr1, expr2) tt_str_op((expr1), !=, (expr2)) /* As test_mem_op, but decodes 'hex' before comparing. There must be a * local char* variable called mem_op_hex_tmp for this to work. */