diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-09-15 21:36:23 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-09-15 21:36:23 -0400 |
commit | d68465754827d61c8aebd8a5d8af53f13296acf3 (patch) | |
tree | 115904c67fb756a8eff61c8957db37bdad477991 /src/test/test.h | |
parent | 34bf9b36905c015f0faf45ee79e0539a0e9e7a3e (diff) | |
download | tor-d68465754827d61c8aebd8a5d8af53f13296acf3.tar.gz tor-d68465754827d61c8aebd8a5d8af53f13296acf3.zip |
Replace all uses of test_{str,}eq
Diffstat (limited to 'src/test/test.h')
-rw-r--r-- | src/test/test.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/test/test.h b/src/test/test.h index 05000c0c46..c2b333c286 100644 --- a/src/test/test.h +++ b/src/test/test.h @@ -22,9 +22,6 @@ #define PRETTY_FUNCTION "" #endif -#define test_eq(expr1, expr2) tt_int_op((expr1), ==, (expr2)) -#define test_streq(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. */ #define test_mem_op_hex(expr1, op, hex) \ |