TAPE: Add useful verbose output during ANSI tape testing

This commit is contained in:
Larry Baker 2021-09-28 14:36:28 -07:00 committed by Mark Pizzolato
parent fc0ce0f5fb
commit df851ebf1a

View file

@ -4234,7 +4234,7 @@ for (t = classify_tests; t->testname != NULL; t++) {
char args[CBUFSIZE*2]; char args[CBUFSIZE*2];
t_stat r; t_stat r;
snprintf (args, sizeof (args), "%s %s %s", sim_uname (uptr), t->success_attach_args, t->testname); snprintf (args, sizeof (args), "%s -v %s %s", sim_uname (uptr), t->success_attach_args, t->testname);
r = attach_cmd (0, args); r = attach_cmd (0, args);
if (r != SCPE_OK) if (r != SCPE_OK)
return sim_messagef (r, "ATTACH %s failed\n", args); return sim_messagef (r, "ATTACH %s failed\n", args);
@ -4244,7 +4244,7 @@ for (t = classify_tests; t->testname != NULL; t++) {
char args[CBUFSIZE*2]; char args[CBUFSIZE*2];
t_stat r; t_stat r;
snprintf (args, sizeof (args), "%s %s %s", sim_uname (uptr), t->fail_attach_args, t->testname); snprintf (args, sizeof (args), "%s -v %s %s", sim_uname (uptr), t->fail_attach_args, t->testname);
r = attach_cmd (0, args); r = attach_cmd (0, args);
if (r == SCPE_OK) { if (r == SCPE_OK) {
detach_cmd (0, sim_uname (uptr)); detach_cmd (0, sim_uname (uptr));