summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-09-11 14:37:12 -0400
committerNick Mathewson <nickm@torproject.org>2014-09-11 14:37:12 -0400
commit32f75c870e78611a456fed11351a19395d11673f (patch)
tree02da904c9aba136ce2538ca6291665fe0545d828
parent6d66e9068baa758cf12f34f1d07625d485264cf9 (diff)
downloadtor-32f75c870e78611a456fed11351a19395d11673f.tar.gz
tor-32f75c870e78611a456fed11351a19395d11673f.zip
Whitespace cleanups in test_util
-rw-r--r--src/test/test_util.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c
index 6f95c7bfc9..a3fec9bbd4 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -2625,7 +2625,7 @@ test_util_exit_status(void *ptr)
int n;
(void)ptr;
-
+
clear_hex_errno(hex_errno);
test_streq("", hex_errno);
@@ -2635,7 +2635,7 @@ test_util_exit_status(void *ptr)
test_eq(n, strlen(hex_errno));
#if SIZEOF_INT == 4
-
+
clear_hex_errno(hex_errno);
n = format_helper_exit_status(0, 0x7FFFFFFF, hex_errno);
test_streq("0/7FFFFFFF\n", hex_errno);
@@ -2646,20 +2646,20 @@ test_util_exit_status(void *ptr)
test_streq("FF/-80000000\n", hex_errno);
test_eq(n, strlen(hex_errno));
test_eq(n, HEX_ERRNO_SIZE);
-
+
#elif SIZEOF_INT == 8
-
+
clear_hex_errno(hex_errno);
n = format_helper_exit_status(0, 0x7FFFFFFFFFFFFFFF, hex_errno);
test_streq("0/7FFFFFFFFFFFFFFF\n", hex_errno);
test_eq(n, strlen(hex_errno));
-
+
clear_hex_errno(hex_errno);
n = format_helper_exit_status(0xFF, -0x8000000000000000, hex_errno);
test_streq("FF/-8000000000000000\n", hex_errno);
test_eq(n, strlen(hex_errno));
test_eq(n, HEX_ERRNO_SIZE);
-
+
#endif
clear_hex_errno(hex_errno);
@@ -2671,7 +2671,7 @@ test_util_exit_status(void *ptr)
n = format_helper_exit_status(0x08, -0x242, hex_errno);
test_streq("8/-242\n", hex_errno);
test_eq(n, strlen(hex_errno));
-
+
clear_hex_errno(hex_errno);
test_streq("", hex_errno);
@@ -4097,4 +4097,3 @@ struct testcase_t util_tests[] = {
UTIL_TEST(max_mem, 0),
END_OF_TESTCASES
};
-