fixed: missing return value from last commit.

This commit is contained in:
Nick Bolton 2013-08-30 17:53:34 +00:00
parent 7b217abe21
commit fcf5940c67
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; return 0;
return RUN_ALL_TESTS(); return RUN_ALL_TESTS();
} }