Merge "Don\'t fail if the new pss is less than stable." am: 26cf352637

am: 4006add727

* commit '4006add7274f3cf29ec212f82137012e32675ee5':
  Don't fail if the new pss is less than stable.
This commit is contained in:
Christopher Ferris 2016-03-08 18:22:02 +00:00 committed by android-build-merger
commit 868f6480df
1 changed files with 3 additions and 3 deletions

View File

@ -1412,9 +1412,9 @@ void CheckForLeak(pid_t pid, pid_t tid) {
}
size_t new_pss = GetPssBytes();
ASSERT_TRUE(new_pss != 0);
size_t abs_diff = (new_pss > stable_pss) ? new_pss - stable_pss : stable_pss - new_pss;
// As long as the new pss is within a certain amount, consider everything okay.
ASSERT_LE(abs_diff, MAX_LEAK_BYTES);
if (new_pss > stable_pss) {
ASSERT_LE(new_pss - stable_pss, MAX_LEAK_BYTES);
}
}
TEST(libbacktrace, check_for_leak_local) {