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
triage all master builds since commit 75b7d94 , which introduced this regression to see if there were any legitimate failures caused by merges to master. The reason that the aforementioned commit caused this failure is because it piped the debug output of the tests to tee, which masks the return code of the test running. This means that a test could fail, but the end result of piping to tee has a return code of zero, meaning the build thinks the tests passed just fine. This is a serious regression in the CI.
add a final test that checks the output from each test's debug file, to ensure that all tests indeed passed to avoid these regressions in the Bash scripts.
tee, which masks the return code of the test running. This means that a test could fail, but the end result of piping toteehas a return code of zero, meaning the build thinks the tests passed just fine. This is a serious regression in the CI.