diff options
author | Jeff Sharkey <jsharkey@android.com> | 2012-09-19 14:10:39 -0700 |
---|---|---|
committer | Jeff Sharkey <jsharkey@android.com> | 2012-09-19 14:54:05 -0700 |
commit | daa57e8d1866fe4579c280c41604f3660db7cd01 (patch) | |
tree | 2632d5d3c145ea83595bc0bb9b944839cccdfcb3 /core/tests/coretests | |
parent | 4046e012887fff1f36dfd3eddc6f354d4c2497fc (diff) | |
download | frameworks_base-daa57e8d1866fe4579c280c41604f3660db7cd01.zip frameworks_base-daa57e8d1866fe4579c280c41604f3660db7cd01.tar.gz frameworks_base-daa57e8d1866fe4579c280c41604f3660db7cd01.tar.bz2 |
Migrate network stats from removed users.
When a user is removed, migrate all network stats belonging to that
user into special UID_REMOVED bucket. Also removes those stats from
kernel to avoid double-counting if another user is created.
Bug: 7194784
Change-Id: I03f1d660fe3754566326b7749cae8068fc224ea9
Diffstat (limited to 'core/tests/coretests')
-rw-r--r-- | core/tests/coretests/src/android/net/NetworkStatsTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/tests/coretests/src/android/net/NetworkStatsTest.java b/core/tests/coretests/src/android/net/NetworkStatsTest.java index 098464f..6331964 100644 --- a/core/tests/coretests/src/android/net/NetworkStatsTest.java +++ b/core/tests/coretests/src/android/net/NetworkStatsTest.java @@ -287,7 +287,7 @@ public class NetworkStatsTest extends TestCase { .addValues(TEST_IFACE, 101, SET_DEFAULT, TAG_NONE, 128L, 8L, 0L, 0L, 0L) .addValues(TEST_IFACE, 101, SET_DEFAULT, 0xF00D, 128L, 8L, 0L, 0L, 0L); - final NetworkStats after = before.withoutUid(100); + final NetworkStats after = before.withoutUids(new int[] { 100 }); assertEquals(6, before.size()); assertEquals(2, after.size()); assertValues(after, 0, TEST_IFACE, 101, SET_DEFAULT, TAG_NONE, 128L, 8L, 0L, 0L, 0L); |