You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The way run_tests is currently implemented leads to problems with the exit
status of the test run.
The line
return sea_tests_failed == 0;
returns 1 if the comparison succeeds. However, the exit status 1 stands for
failure.
I would propose the following fix:
if (sea_tests_failed == 0) {
return 0;
else {
return -1;
}
Original issue reported on code.google.com by [email protected] on 17 Aug 2014 at 4:56
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 17 Aug 2014 at 4:56The text was updated successfully, but these errors were encountered: