Skip to content

Commit

Permalink
Fix signal number for MLE execution in newer Travis env
Browse files Browse the repository at this point in the history
  • Loading branch information
fushar committed Sep 9, 2017
1 parent ac00a3f commit 34e6902
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ TEST_F(OperatingSystemIntegrationTests, Execution_ExceededMemoryLimits) {

EXPECT_FALSE(result.isSuccessful());
EXPECT_FALSE(result.exitCode());
EXPECT_THAT(result.exitSignal(), Eq(optional<int>(SIGKILL)));
EXPECT_THAT(result.exitSignal(), Eq(optional<int>(SIGSEGV)));
}

#endif
Expand Down

0 comments on commit 34e6902

Please sign in to comment.