mirror of
https://github.com/open-simh/simh.git
synced 2026-05-04 15:16:06 +00:00
TAPE: Add useful verbose output during ANSI tape testing
This commit is contained in:
committed by
Mark Pizzolato
parent
fc0ce0f5fb
commit
df851ebf1a
@@ -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));
|
||||||
|
|||||||
Reference in New Issue
Block a user