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 SSH execution not redirecting output properly #17

Merged
merged 2 commits into from
Mar 14, 2024
Merged

Fix SSH execution not redirecting output properly #17

merged 2 commits into from
Mar 14, 2024

Commits on Mar 14, 2024

  1. Fix SSH execution not redirecting output properly

    This patch aims to save commands stdout/stderr once they are executed
    inside the SSH channel. The whole implementation has been changed, in
    order to customize the current SSH session object and to store both
    stdout and stderr messages inside it, as well as checking for Kernel
    Panic triggered by the command. In this way, the whole SSH
    implementation should be also more stable.
    
    Also, SSH tests have been improved by adding more tests, in order to
    check stderr acquisition and long stdout text messages.
    acerv committed Mar 14, 2024
    Configuration menu
    Copy the full SHA
    b9f69f3 View commit details
    Browse the repository at this point in the history
  2. Recognize when LTP test returns zero

    The previous code was not taking in consideration the return code 0, so
    when test text was not acquired correctly, the text process ended up to
    recognize test failure.
    acerv committed Mar 14, 2024
    Configuration menu
    Copy the full SHA
    6d4eee8 View commit details
    Browse the repository at this point in the history