Repository: mesos Updated Branches: refs/heads/master c03c1a5cb -> d762358c7
Separated build and test steps in review bot. Review: https://reviews.apache.org/r/18865 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/d762358c Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/d762358c Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/d762358c Branch: refs/heads/master Commit: d762358c7695f6d1ac4b375e5ec935b9ad972d3a Parents: c03c1a5 Author: Vinod Kone <[email protected]> Authored: Thu Mar 6 14:44:25 2014 -0800 Committer: Vinod Kone <[email protected]> Committed: Thu Mar 6 14:44:42 2014 -0800 ---------------------------------------------------------------------- support/verify-reviews.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/d762358c/support/verify-reviews.py ---------------------------------------------------------------------- diff --git a/support/verify-reviews.py b/support/verify-reviews.py index 9b4a025..5bfa1a5 100755 --- a/support/verify-reviews.py +++ b/support/verify-reviews.py @@ -107,7 +107,10 @@ def verify_review(review_request): # Make sure build succeeds. shell("./bootstrap") shell("./configure") - shell("make -j3 check >/dev/null") + shell("make -j3 check GTEST_FILTER='' >/dev/null") + + # Make sure tests pass. + shell("make check") # Success! post_review(
