-
Notifications
You must be signed in to change notification settings - Fork 31
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
travis.sh and run_tests.py reported success when it a was failure #159
Comments
To be honest, I can't immediately spot the cause of the error. |
I tested the exit code on my repo AlignTab and it seems working. |
travis.sh and run_tests.py reported success when it a was failure
reported success when it a was failure.
reported success when it a was failure.
After 5 ours working on it, I got this: read_output, success False # run_tests.py
Exiting with error! False END! # on run_tests.py
travis.sh SYSTEM EXIT CODE: 4005! # on travis.sh
Python is exiting with code I am not sure how I am inside a nested shell when running the function But just adding RunTests() {
if [ -z "$1" ]; then
python "$STP/UnitTesting/sbin/run_tests.py" "$PACKAGE" || exit $?
else
python "$STP/UnitTesting/sbin/run_tests.py" "$@" "$PACKAGE" || exit $?
fi
printf 'travis.sh SYSTEM EXIT CODE: %s!' "${$?}"
pkill "[Ss]ubl" || true
pkill 'plugin_host' || true
sleep 2
} Before I was doing this: "run_tests")
RunTests "$@" || ShowFullSublimeTextConsole The function ShowFullSublimeTextConsole would print all Sublime Text console saved to a file by some other script I added on bootstrap. But, after adding My final solution was:
|
Ok. I believe that the bug was introduced by your fork, to be specific If |
Yes, the function should run, but it did not ran because none of its prints are showed. Also, notice the function ends with But as I say earlier, even after I removed the |
I still fail to see why it doesn't forward the return code. At the very least, we don't see any issues using our master https://travis-ci.org/randy3k/AlignTab/jobs/523692004 |
To demonstrate that it is the issue of (randyimac)-~$ cat foo
#!/bin/bash
set -e
Foo() {
echo "foo"
python -c 'import sys; sys.exit(1)'
echo "bar"
}
Foo || true # bar is printed
(randyimac)-~$ sh foo
foo
bar
(randyimac)-~$ cat foo
#!/bin/bash
set -e
Foo() {
echo "foo"
python -c 'import sys; sys.exit(1)'
echo "bar"
}
Foo # bar is not printed
(randyimac)-~$ sh foo
foo You can see that if |
Actually, it is documented that Exit immediately if a pipeline (see Pipelines), which may consist of a single simple command (see Simple Commands), a list (see Lists), or a compound command (see Compound Commands) returns a non-zero status. The shell does not exit if the command that fails is part of the command list immediately following a while or until keyword, part of the test in an if statement, part of any command executed in a && or || list except the command following the final && or ||, any command in a pipeline but the last, or if the command’s return status is being inverted with !. If a compound command other than a subshell returns a non-zero status because a command failed while -e was being ignored, the shell does not exit. A trap on ERR, if set, is executed before the shell exits. |
What!!! Shell is insane! Thanks for the full example.
|
Job: https://travis-ci.org/ehuss/Sublime-Wrap-Plus/jobs/523336576
travis.sh
run_tests.py
Related issues:
The text was updated successfully, but these errors were encountered: