Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix exec_command segfault issue #60

Merged
merged 1 commit into from
Jun 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pylibsshext/includes/callbacks.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ from libc.stdint cimport uint32_t

from pylibsshext.includes.libssh cimport ssh_session, ssh_channel

cdef extern from "libssh/callbacks.h" nogil:
cdef extern from "libssh/callbacks.h":

void ssh_callbacks_init(void *)

Expand Down
5 changes: 0 additions & 5 deletions tests/unit/channel_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ def ssh_channel(ssh_client_session):
chan.close()


@pytest.mark.xfail(
reason='This test causes SEGFAULT, flakily.',
run=False,
strict=False,
)
@pytest.mark.forked
def test_exec_command(ssh_channel):
"""Test getting the output of a remotely executed command."""
Expand Down