summaryrefslogtreecommitdiff
path: root/src/test/test_util.c
diff options
context:
space:
mode:
authorAndrea Shepard <andrea@persephoneslair.org>2012-06-19 04:07:30 -0700
committerNick Mathewson <nickm@torproject.org>2012-06-22 22:21:19 -0400
commit4c62cc6f9997c215ff2687ce342e00d630d922c7 (patch)
tree6783311b9c631eb294ae3aeb3b141fbf3691f909 /src/test/test_util.c
parente6782b355ae77455aaff3af9fe3831c07312a5c8 (diff)
downloadtor-4c62cc6f9997c215ff2687ce342e00d630d922c7.tar.gz
tor-4c62cc6f9997c215ff2687ce342e00d630d922c7.zip
Make format_helper_exit_status() avoid unnecessary spaces
Diffstat (limited to 'src/test/test_util.c')
-rw-r--r--src/test/test_util.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c
index 7484b9e90f..a3a5450476 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -2143,11 +2143,11 @@ test_util_exit_status(void *ptr)
clear_hex_errno(hex_errno);
format_helper_exit_status(0, 0, hex_errno);
- test_streq(" 0/0\n", hex_errno);
+ test_streq("0/0\n", hex_errno);
clear_hex_errno(hex_errno);
format_helper_exit_status(0, 0x7FFFFFFF, hex_errno);
- test_streq(" 0/7FFFFFFF\n", hex_errno);
+ test_streq("0/7FFFFFFF\n", hex_errno);
clear_hex_errno(hex_errno);
format_helper_exit_status(0xFF, -0x80000000, hex_errno);
@@ -2155,11 +2155,11 @@ test_util_exit_status(void *ptr)
clear_hex_errno(hex_errno);
format_helper_exit_status(0x7F, 0, hex_errno);
- test_streq(" 7F/0\n", hex_errno);
+ test_streq("7F/0\n", hex_errno);
clear_hex_errno(hex_errno);
format_helper_exit_status(0x08, -0x242, hex_errno);
- test_streq(" 8/-242\n", hex_errno);
+ test_streq("8/-242\n", hex_errno);
done:
;
@@ -2357,7 +2357,7 @@ test_util_spawn_background_fail(void *ptr)
tor_snprintf(code, sizeof(code), "%x/%x",
9 /* CHILD_STATE_FAILEXEC */ , ENOENT);
tor_snprintf(expected_out, sizeof(expected_out),
- "ERR: Failed to spawn background process - code %12s\n", code);
+ "ERR: Failed to spawn background process - code %s\n", code);
run_util_spawn_background(argv, expected_out, expected_err, 255,
expected_status);