blob: b5a464884d2041d10ecb3f760c194c05416bb854 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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", "-s",
]
print("subprocess args: ", args)
|