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

[TESTS] Improve script robustness #2893

Merged
merged 1 commit into from
Mar 25, 2019
Merged

[TESTS] Improve script robustness #2893

merged 1 commit into from
Mar 25, 2019

Commits on Mar 25, 2019

  1. [TESTS] Improve script robustness

    A number of test scripts use the '|| exit 1' idiom.  This has two
    issues, first process exit codes are defined to be in the range 0-255.
    Second, more importantly, the idiom is fragile because it requires
    that every possible failure point be explicitly coded.  This patch
    removes the idiom in favour of "set -e" as used in the docker scripts
    as a more robust mechanism to ensure that script failures are always
    caught and propagated by default.
    mshawcroft committed Mar 25, 2019
    Configuration menu
    Copy the full SHA
    ba39b69 View commit details
    Browse the repository at this point in the history