diff options
author | Alexander Færøy <ahf@torproject.org> | 2017-06-05 14:23:02 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-08-24 15:24:34 -0400 |
commit | c4744a01cc96b85cc644e07cd2aa5994742a4329 (patch) | |
tree | 3c9a50210dc1374934fb9f6e571d7c5c27732a3d /src/test/test_hs_ntor.c | |
parent | 9e1fa959201611b764ac90ce59485d33b8ea975b (diff) | |
download | tor-c4744a01cc96b85cc644e07cd2aa5994742a4329.tar.gz tor-c4744a01cc96b85cc644e07cd2aa5994742a4329.zip |
Fix operator usage in src/test/*.c
This patch fixes the operator usage in src/test/*.c to use the symbolic
operators instead of the normal C comparison operators.
This patch was generated using:
./scripts/coccinelle/test-operator-cleanup src/test/*.[ch]
Diffstat (limited to 'src/test/test_hs_ntor.c')
-rw-r--r-- | src/test/test_hs_ntor.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/test_hs_ntor.c b/src/test/test_hs_ntor.c index 2544997106..8eee54d4b4 100644 --- a/src/test/test_hs_ntor.c +++ b/src/test/test_hs_ntor.c @@ -57,7 +57,7 @@ test_hs_ntor(void *arg) &client_ephemeral_enc_keypair, subcredential, &client_hs_ntor_intro_cell_keys); - tt_int_op(retval, ==, 0); + tt_int_op(retval, OP_EQ, 0); /* Service: Simulate the decryption of the received INTRODUCE1 */ retval = @@ -66,7 +66,7 @@ test_hs_ntor(void *arg) &client_ephemeral_enc_keypair.pubkey, subcredential, &service_hs_ntor_intro_cell_keys); - tt_int_op(retval, ==, 0); + tt_int_op(retval, OP_EQ, 0); /* Test that the INTRODUCE1 encryption/mac keys match! */ tt_mem_op(client_hs_ntor_intro_cell_keys.enc_key, OP_EQ, @@ -83,7 +83,7 @@ test_hs_ntor(void *arg) &service_ephemeral_rend_keypair, &client_ephemeral_enc_keypair.pubkey, &service_hs_ntor_rend_cell_keys); - tt_int_op(retval, ==, 0); + tt_int_op(retval, OP_EQ, 0); /* Client: Simulate the verification of a received RENDEZVOUS1 cell */ retval = @@ -92,7 +92,7 @@ test_hs_ntor(void *arg) &service_intro_enc_keypair.pubkey, &service_ephemeral_rend_keypair.pubkey, &client_hs_ntor_rend_cell_keys); - tt_int_op(retval, ==, 0); + tt_int_op(retval, OP_EQ, 0); /* Test that the RENDEZVOUS1 key material match! */ tt_mem_op(client_hs_ntor_rend_cell_keys.rend_cell_auth_mac, OP_EQ, |