# HG changeset patch # User Paul Boddie # Date 1662159610 -7200 # Node ID 8cad2f65940fdbaa6a06af950ef02550fcd19509 # Parent a973ff4ba9d7ce705008e2206312cb79df7a633b Adjusted various output statements. diff -r a973ff4ba9d7 -r 8cad2f65940f tests/dstest_block_client_simple.cc --- a/tests/dstest_block_client_simple.cc Fri Sep 02 21:54:24 2022 +0200 +++ b/tests/dstest_block_client_simple.cc Sat Sep 03 01:00:10 2022 +0200 @@ -113,7 +113,7 @@ position += nread; } - printf("File shown in its entirety: %s\n", position == file->size ? "True" : "False"); + printf("\nFile shown in its entirety: %s\n", position == file->size ? "True" : "False"); printf("End of test.\n"); return 0; } diff -r a973ff4ba9d7 -r 8cad2f65940f tests/dstest_host_client.cc --- a/tests/dstest_host_client.cc Fri Sep 02 21:54:24 2022 +0200 +++ b/tests/dstest_host_client.cc Sat Sep 03 01:00:10 2022 +0200 @@ -88,7 +88,7 @@ } printf("File shown.\n"); - + printf("End of test.\n"); return 0; } diff -r a973ff4ba9d7 -r 8cad2f65940f tests/dstest_pipe_client.cc --- a/tests/dstest_pipe_client.cc Fri Sep 02 21:54:24 2022 +0200 +++ b/tests/dstest_pipe_client.cc Sat Sep 03 01:00:10 2022 +0200 @@ -180,6 +180,9 @@ for (int i = 0; i < 3; i++) activities[i]->join(); + + printf("End of test.\n"); + return 0; } // vim: tabstop=2 expandtab shiftwidth=2