fixed: return value from last commit - should be 1, not 0.

This commit is contained in:
Nick Bolton 2013-08-30 18:39:10 +00:00
parent fcf5940c67
commit 46a33b2d97
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ main(int argc, char **argv)
// HACK: temp fail for unit tests to test buildbot failure email. // HACK: temp fail for unit tests to test buildbot failure email.
EXPECT_EQ(true, false); EXPECT_EQ(true, false);
return 0; return 1;
return RUN_ALL_TESTS(); return RUN_ALL_TESTS();
} }