aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_crypto.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-11-12 13:42:01 -0500
committerNick Mathewson <nickm@torproject.org>2014-11-12 13:42:01 -0500
commit4ac5175109b14f8fafca3374ab5ca63968ab2cca (patch)
tree2d5b009f443942de02807a43d796ae2a4351488a /src/test/test_crypto.c
parenta3dafd3f58bb3122b9de919e931c02b5e12373b2 (diff)
downloadtor-4ac5175109b14f8fafca3374ab5ca63968ab2cca.tar.gz
tor-4ac5175109b14f8fafca3374ab5ca63968ab2cca.zip
Fix wide lines (from 13172)
Diffstat (limited to 'src/test/test_crypto.c')
-rw-r--r--src/test/test_crypto.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/test/test_crypto.c b/src/test/test_crypto.c
index d3cd013879..5352b9fdb4 100644
--- a/src/test/test_crypto.c
+++ b/src/test/test_crypto.c
@@ -700,7 +700,8 @@ test_crypto_formats(void *arg)
tt_int_op(strlen(data1),OP_EQ, 40);
data2 = tor_malloc(FINGERPRINT_LEN+1);
crypto_add_spaces_to_fp(data2, FINGERPRINT_LEN+1, data1);
- tt_str_op(data2,OP_EQ, "ABCD 1234 ABCD 5678 0000 ABCD 1234 ABCD 5678 0000");
+ tt_str_op(data2, OP_EQ,
+ "ABCD 1234 ABCD 5678 0000 ABCD 1234 ABCD 5678 0000");
tor_free(data1);
tor_free(data2);
}
@@ -1474,7 +1475,8 @@ test_crypto_curve25519_persist(void *arg)
tt_int_op(0,OP_EQ,curve25519_keypair_generate(&keypair, 0));
- tt_int_op(0,OP_EQ,curve25519_keypair_write_to_file(&keypair, fname, "testing"));
+ tt_int_op(0,OP_EQ,
+ curve25519_keypair_write_to_file(&keypair, fname, "testing"));
tt_int_op(0,OP_EQ,curve25519_keypair_read_from_file(&keypair2, &tag, fname));
tt_str_op(tag,OP_EQ,"testing");
tor_free(tag);
@@ -1505,12 +1507,15 @@ test_crypto_curve25519_persist(void *arg)
tor_free(fname);
fname = tor_strdup(get_fname("bogus_keypair"));
- tt_int_op(-1, OP_EQ, curve25519_keypair_read_from_file(&keypair2, &tag, fname));
+ tt_int_op(-1, OP_EQ,
+ curve25519_keypair_read_from_file(&keypair2, &tag, fname));
tor_free(tag);
content[69] ^= 0xff;
- tt_int_op(0, OP_EQ, write_bytes_to_file(fname, content, (size_t)st.st_size, 1));
- tt_int_op(-1, OP_EQ, curve25519_keypair_read_from_file(&keypair2, &tag, fname));
+ tt_int_op(0, OP_EQ,
+ write_bytes_to_file(fname, content, (size_t)st.st_size, 1));
+ tt_int_op(-1, OP_EQ,
+ curve25519_keypair_read_from_file(&keypair2, &tag, fname));
done:
tor_free(fname);