diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-09-15 21:25:27 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-09-15 21:25:27 -0400 |
commit | 1146a6a1c5e194cc05944622628188c82771a3d4 (patch) | |
tree | 998da2fa926372ed9dd73a1da58068537ca9e2a2 /src | |
parent | 5253ba31843abdb253bd5eebe5f4d5bdec00a350 (diff) | |
download | tor-1146a6a1c5e194cc05944622628188c82771a3d4.tar.gz tor-1146a6a1c5e194cc05944622628188c82771a3d4.zip |
Replace the remaining test_n?eq_ptr calls
Diffstat (limited to 'src')
-rw-r--r-- | src/test/test.h | 2 | ||||
-rw-r--r-- | src/test/test_crypto.c | 8 | ||||
-rw-r--r-- | src/test/test_util.c | 6 |
3 files changed, 7 insertions, 9 deletions
diff --git a/src/test/test.h b/src/test/test.h index 71cbb03f70..799f208f0d 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_eq_ptr(expr1, expr2) tt_ptr_op((expr1), ==, (expr2)) #define test_neq(expr1, expr2) tt_int_op((expr1), !=, (expr2)) -#define test_neq_ptr(expr1, expr2) tt_ptr_op((expr1), !=, (expr2)) #define test_streq(expr1, expr2) tt_str_op((expr1), ==, (expr2)) #define test_strneq(expr1, expr2) tt_str_op((expr1), !=, (expr2)) diff --git a/src/test/test_crypto.c b/src/test/test_crypto.c index 274a2687df..86ed86f76d 100644 --- a/src/test/test_crypto.c +++ b/src/test/test_crypto.c @@ -128,9 +128,9 @@ test_crypto_aes(void *arg) memset(data2, 0, 1024); memset(data3, 0, 1024); env1 = crypto_cipher_new(NULL); - test_neq_ptr(env1, 0); + tt_ptr_op(env1, !=, NULL); env2 = crypto_cipher_new(crypto_cipher_get_key(env1)); - test_neq_ptr(env2, 0); + tt_ptr_op(env2, !=, NULL); /* Try encrypting 512 chars. */ crypto_cipher_encrypt(env1, data2, data1, 512); @@ -161,7 +161,7 @@ test_crypto_aes(void *arg) memset(data3, 0, 1024); env2 = crypto_cipher_new(crypto_cipher_get_key(env1)); - test_neq_ptr(env2, NULL); + tt_ptr_op(env2, !=, NULL); for (j = 0; j < 1024-16; j += 17) { crypto_cipher_encrypt(env2, data3+j, data1+j, 17); } @@ -498,7 +498,7 @@ test_crypto_pk(void) crypto_pk_free(pk2); pk2 = crypto_pk_copy_full(pk1); tt_assert(pk2 != NULL); - test_neq_ptr(pk1, pk2); + tt_ptr_op(pk1, !=, pk2); tt_assert(crypto_pk_cmp_keys(pk1,pk2) == 0); done: diff --git a/src/test/test_util.c b/src/test/test_util.c index b819d5357b..d3ac0cc8b6 100644 --- a/src/test/test_util.c +++ b/src/test/test_util.c @@ -810,7 +810,7 @@ test_util_config_line_escaped_content(void) str = buf5; str = parse_config_line_from_str(str, &k, &v); - test_eq_ptr(str, NULL); + tt_ptr_op(str, ==, NULL); tor_free(k); tor_free(v); #endif @@ -1199,7 +1199,7 @@ test_util_strmisc(void) const char *s = "abcdefghijklmnopqrstuvwxyz"; cp_tmp = tor_strndup(s, 30); tt_str_op(cp_tmp,==, s); /* same string, */ - test_neq_ptr(cp_tmp, s); /* but different pointers. */ + tt_ptr_op(cp_tmp,!=,s); /* but different pointers. */ tor_free(cp_tmp); cp_tmp = tor_strndup(s, 5); @@ -1209,7 +1209,7 @@ test_util_strmisc(void) s = "a\0b\0c\0d\0e\0"; cp_tmp = tor_memdup(s,10); tt_mem_op(cp_tmp,==, s, 10); /* same ram, */ - test_neq_ptr(cp_tmp, s); /* but different pointers. */ + tt_ptr_op(cp_tmp,!=,s); /* but different pointers. */ tor_free(cp_tmp); } |