kyua: Fix prompt of "debug -p" command

This commit is contained in:
Igor Ostapenko
2025-12-25 20:41:22 +00:00
parent 98c3d868fb
commit ecb58f931d
+2 -2
View File
@@ -91,14 +91,14 @@ class dbg : public engine::debugger {
_ui->out("The test failed and paused right before its cleanup "
"routine.");
_ui->out(F("Test work dir: %s") % eh.work_directory().str());
_ui->out("Press any key to continue...");
_ui->out("Press <Enter> to continue...");
(void) std::cin.get();
}
} else if (_cmdline.has_option(pause_before_cleanup_option
.long_name())) {
_ui->out("The test paused right before its cleanup routine.");
_ui->out(F("Test work dir: %s") % eh.work_directory().str());
_ui->out("Press any key to continue...");
_ui->out("Press <Enter> to continue...");
(void) std::cin.get();
}
};