diff options
author | Steven Laver <lavers@google.com> | 2020-04-07 13:06:39 -0700 |
---|---|---|
committer | Steven Laver <lavers@google.com> | 2020-04-07 13:06:39 -0700 |
commit | df73284a33506ba26aadbd20a1dbd01353820200 (patch) | |
tree | 05663a2e5363806080b72341c1e00e9e3fad6902 /cmds/statsd/tests/shell/ShellSubscriber_test.cpp | |
parent | 194251d18fedf8b9ae6b9e43f3a99f876232663c (diff) | |
parent | e781cc43c6d4aa190d68c5405f36770ba9d6fd0b (diff) |
Merge RP1A.200401.001
Change-Id: I4050f39c7971bf1750afb1c8bc139f5fc41020e3
Diffstat (limited to 'cmds/statsd/tests/shell/ShellSubscriber_test.cpp')
-rw-r--r-- | cmds/statsd/tests/shell/ShellSubscriber_test.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cmds/statsd/tests/shell/ShellSubscriber_test.cpp b/cmds/statsd/tests/shell/ShellSubscriber_test.cpp index 5eef92e12ba9..ac3ad690f81e 100644 --- a/cmds/statsd/tests/shell/ShellSubscriber_test.cpp +++ b/cmds/statsd/tests/shell/ShellSubscriber_test.cpp @@ -187,8 +187,10 @@ TEST(ShellSubscriberTest, testPulledSubscription) { sp<MockUidMap> uidMap = new NaggyMock<MockUidMap>(); sp<MockStatsPullerManager> pullerManager = new StrictMock<MockStatsPullerManager>(); - EXPECT_CALL(*pullerManager, Pull(10016, _)) - .WillRepeatedly(Invoke([](int tagId, vector<std::shared_ptr<LogEvent>>* data) { + const vector<int32_t> uids = {AID_SYSTEM}; + EXPECT_CALL(*pullerManager, Pull(10016, uids, _, _)) + .WillRepeatedly(Invoke([](int tagId, const vector<int32_t>&, + vector<std::shared_ptr<LogEvent>>* data, bool) { data->clear(); data->push_back(makeCpuActiveTimeAtom(/*uid=*/kUid1, /*timeMillis=*/kCpuTime1)); data->push_back(makeCpuActiveTimeAtom(/*uid=*/kUid2, /*timeMillis=*/kCpuTime2)); |