Skip to content

Commit

Permalink
Replaced EXIT(1) with EXIT(EXIT_FAILURE) in libprocess.
Browse files Browse the repository at this point in the history
  • Loading branch information
rukletsov committed Mar 24, 2016
1 parent bbe7638 commit e1c9ec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/libprocess/include/process/gmock.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ class FilterTestEventListener : public ::testing::EmptyTestEventListener
TestsFilter* install()
{
if (!started) {
EXIT(1)
EXIT(EXIT_FAILURE)
<< "To use FUTURE/DROP_MESSAGE/DISPATCH, etc. you need to do the "
<< "following before you invoke RUN_ALL_TESTS():\n\n"
<< "\t::testing::TestEventListeners& listeners =\n"
Expand Down

0 comments on commit e1c9ec4

Please sign in to comment.