mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
Make the tests non-interactive just in case. Disable the tests that fail. Closes: https://bugs.gentoo.org/732294 Bug: https://bugs.gentoo.org/920293 Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
14 lines
300 B
Diff
14 lines
300 B
Diff
Force tests to be non-interactive
|
|
|
|
--- a/test/test_dropbear.py
|
|
+++ b/test/test_dropbear.py
|
|
@@ -23,7 +23,7 @@
|
|
args = opt.dropbear.split() + [
|
|
"-p", LOCALADDR + ":" + opt.port, # bind locally only
|
|
"-r", opt.hostkey,
|
|
- "-F", "-E",
|
|
+ "-F", "-E", "-s",
|
|
]
|
|
print("subprocess args: ", args)
|
|
|