mirror of
https://github.com/open-simh/simh.git
synced 2026-02-26 08:54: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];
|
||||
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);
|
||||
if (r != SCPE_OK)
|
||||
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];
|
||||
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);
|
||||
if (r == SCPE_OK) {
|
||||
detach_cmd (0, sim_uname (uptr));
|
||||
|
||||
Reference in New Issue
Block a user