summaryrefslogtreecommitdiffstats
path: root/tests/helpers
diff options
context:
space:
mode:
authorRuediger Meier2016-04-06 12:30:17 +0200
committerKarel Zak2016-04-13 12:29:16 +0200
commitc8d211478f4a562628fb400355861ca81f8a446b (patch)
treef3ead083674f732a6f21d4b2eb51af2378300d19 /tests/helpers
parentchrt: validate priority before trying to use it (diff)
downloadkernel-qcow2-util-linux-c8d211478f4a562628fb400355861ca81f8a446b.tar.gz
kernel-qcow2-util-linux-c8d211478f4a562628fb400355861ca81f8a446b.tar.xz
kernel-qcow2-util-linux-c8d211478f4a562628fb400355861ca81f8a446b.zip
tests: test_md5 prints md5sum only
We want to to use it for other tests without depending on gnu md5sum and without cut or awk. Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
Diffstat (limited to 'tests/helpers')
-rw-r--r--tests/helpers/test_md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/helpers/test_md5.c b/tests/helpers/test_md5.c
index 44f6a933d..471580e12 100644
--- a/tests/helpers/test_md5.c
+++ b/tests/helpers/test_md5.c
@@ -24,6 +24,6 @@ int main(void)
for (i = 0; i < MD5LENGTH; i++)
printf( "%02x", digest[i] );
- printf(" -\n");
+ printf("\n");
return 0;
}