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

[test] packaging: use shell when running commands #30852

Merged

Commits on May 24, 2018

  1. [test] packaging: use shell when running commands

    When subprocesses are started with ProcessBuilder, they're forked by the
    java process directly rather than from a shell, which can be surprising
    for our use case here in the packaging tests which is similar to
    scripting.
    
    This commit changes the tests to run their subprocess commands in a
    shell, using the bash -c <script> syntax for commands on linux and using
    the powershell.exe -Command <script> syntax for commands on windows.
    This syntax on windows is essentially what the tests were already doing.
    andyb-elastic committed May 24, 2018
    Configuration menu
    Copy the full SHA
    63b4145 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2018

  1. Configuration menu
    Copy the full SHA
    1f02f71 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    22a6e82 View commit details
    Browse the repository at this point in the history