]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
remove two unused test_* macros
authorNick Mathewson <nickm@torproject.org>
Tue, 16 Sep 2014 01:28:26 +0000 (21:28 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 16 Sep 2014 01:28:26 +0000 (21:28 -0400)
src/test/test.h

index 5d0c062ae6823722410bbdbf43d06721108c67ef..d3464111f5748ecec75079cb3af8a92016242ffb 100644 (file)
@@ -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. */