git: ecb58f931d45 - main - kyua: Fix prompt of "debug -p" command
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 25 Dec 2025 20:44:49 UTC
The branch main has been updated by igoro:
URL: https://cgit.FreeBSD.org/src/commit/?id=ecb58f931d45d6fe4e8b60a172415cc387657a6b
commit ecb58f931d45d6fe4e8b60a172415cc387657a6b
Author: Igor Ostapenko <igoro@FreeBSD.org>
AuthorDate: 2025-12-25 20:41:22 +0000
Commit: Igor Ostapenko <igoro@FreeBSD.org>
CommitDate: 2025-12-25 20:41:22 +0000
kyua: Fix prompt of "debug -p" command
---
contrib/kyua/cli/cmd_debug.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/contrib/kyua/cli/cmd_debug.cpp b/contrib/kyua/cli/cmd_debug.cpp
index c00920c1a3f7..700c4b3ea851 100644
--- a/contrib/kyua/cli/cmd_debug.cpp
+++ b/contrib/kyua/cli/cmd_debug.cpp
@@ -91,14 +91,14 @@ public:
_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();
}
};