Hi Alice, On 06/14/2017 04:33 PM, Alice Ferrazz wrote: > From: Alice Ferrazzi <alice.ferrazzi@xxxxxxxxx> > > Make the kcmp test output in the TAP13 format by using the > TAP13 output functions defined in kselftest.h > > Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> > Signed-off-by: Paul Elder <paul.elder@xxxxxxxx> > Signed-off-by: Alice Ferrazzi <alice.ferrazzi@xxxxxxxxx> > --- > v3: Add kcmp test port to TAP13 - Alice > > tools/testing/selftests/kcmp/kcmp_test.c | 33 ++++++++++++++------------------ > 1 file changed, 14 insertions(+), 19 deletions(-) > > diff --git a/tools/testing/selftests/kcmp/kcmp_test.c b/tools/testing/selftests/kcmp/kcmp_test.c > index a5a4da856d..b007e62e03 100644 > --- a/tools/testing/selftests/kcmp/kcmp_test.c > +++ b/tools/testing/selftests/kcmp/kcmp_test.c > @@ -35,30 +35,28 @@ int main(int argc, char **argv) > pid1 = getpid(); > > if (fd1 < 0) { > - perror("Can't create file"); > - ksft_exit_fail(); > + ksft_exit_fail_msg("Can't create file"); > } > > pid2 = fork(); > if (pid2 < 0) { > - perror("fork failed"); > - ksft_exit_fail(); > + ksft_exit_fail_msg("fork failed"); > } > > if (!pid2) { > int pid2 = getpid(); > int ret; > + char buf[512]; > > fd2 = open(kpath, O_RDWR, 0644); > if (fd2 < 0) { > - perror("Can't open file"); > - ksft_exit_fail(); > + ksft_exit_fail_msg("Can't open file"); > } > > /* An example of output and arguments */ > - printf("pid1: %6d pid2: %6d FD: %2ld FILES: %2ld VM: %2ld " > + snprintf(&buf[0], sizeof(buf) ,"pid1: %6d pid2: %6d FD: %2ld FILES: %2ld VM: %2ld " You don't need to do &buf[0] here, buf will do. > "FS: %2ld SIGHAND: %2ld IO: %2ld SYSVSEM: %2ld " > - "INV: %2ld\n", > + "INV: %2ld", > pid1, pid2, > sys_kcmp(pid1, pid2, KCMP_FILE, fd1, fd2), > sys_kcmp(pid1, pid2, KCMP_FILES, 0, 0), > @@ -73,30 +71,27 @@ int main(int argc, char **argv) > > /* This one should return same fd */ > ret = sys_kcmp(pid1, pid2, KCMP_FILE, fd1, fd1); > + ksft_test_result_pass(buf); > if (ret) { > - printf("FAIL: 0 expected but %d returned (%s)\n", > + snprintf(&buf[0], sizeof(buf), "0 expected but %d returned (%s)", You don't need to do &buf[0] here, buf will do. > ret, strerror(errno)); > - ksft_inc_fail_cnt(); > + ksft_test_result_fail(buf); > ret = -1; > } else { > - printf("PASS: 0 returned as expected\n"); > - ksft_inc_pass_cnt(); > + ksft_test_result_pass("0 returned as expected"); > } > > /* Compare with self */ > ret = sys_kcmp(pid1, pid1, KCMP_VM, 0, 0); > if (ret) { > - printf("FAIL: 0 expected but %d returned (%s)\n", > + snprintf(&buf[0], sizeof(buf), "0 expected but %d returned (%s)", You don't need to do &buf[0] here, buf will do. > ret, strerror(errno)); > - ksft_inc_fail_cnt(); > + ksft_test_result_fail(buf); > ret = -1; > } else { > - printf("PASS: 0 returned as expected\n"); > - ksft_inc_pass_cnt(); > + ksft_test_result_pass("0 returned as expected"); > } > > - ksft_print_cnts(); > - > if (ret) > ksft_exit_fail(); > else > @@ -105,5 +100,5 @@ int main(int argc, char **argv) > > waitpid(pid2, &status, P_ALL); > > - return ksft_exit_pass(); I will take a look at these - for now leave them the way are. > + return 0; > } > thanks, -- Shuah -- To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html