Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
openairinterface5G
Commits
1e2a7156
Commit
1e2a7156
authored
Feb 22, 2018
by
Cédric Roux
Browse files
test setup v2: minor bugfix
parent
5357ef20
Changes
1
Hide whitespace changes
Inline
Side-by-side
cmake_targets/autotests/v2/connection.py
View file @
1e2a7156
...
...
@@ -13,7 +13,7 @@ class connection:
try
:
(
pid
,
fd
)
=
os
.
forkpty
()
except
BaseException
,
e
:
log
(
"ERROR: forkpty for '"
+
description
+
"': "
+
e
)
log
(
"ERROR: forkpty for '"
+
description
+
"': "
+
str
(
e
)
)
(
pid
,
fd
)
=
(
-
1
,
-
1
)
if
pid
==
-
1
:
...
...
@@ -26,7 +26,7 @@ class connection:
os
.
execvp
(
'sshpass'
,
[
'sshpass'
,
'-p'
,
password
,
'ssh'
,
user
+
'@'
+
host
])
except
BaseException
,
e
:
log
(
"ERROR: execvp for '"
+
description
+
"': "
+
e
)
log
(
"ERROR: execvp for '"
+
description
+
"': "
+
str
(
e
)
)
log
(
"ERROR: execvp failed for '"
+
description
+
"'"
)
os
.
_exit
(
1
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment