blob: 0c30302d63a3f815c884a3dcca1845d431e529c8 [file] [log] [blame]
Misha Wagner566903a2018-10-02 10:50:12 +01001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.os;
18
19import static org.junit.Assert.assertNotNull;
20
21import android.perftests.utils.BenchmarkState;
22import android.perftests.utils.PerfStatusReporter;
KOUSHIK PANUGANTI412796e2018-12-17 14:16:52 -080023
24import androidx.test.filters.LargeTest;
25import androidx.test.runner.AndroidJUnit4;
Misha Wagner566903a2018-10-02 10:50:12 +010026
27import com.android.internal.os.KernelCpuThreadReader;
28
29import org.junit.Rule;
30import org.junit.Test;
31import org.junit.runner.RunWith;
32
Misha Wagner566903a2018-10-02 10:50:12 +010033/**
34 * Performance tests collecting per-thread CPU data.
35 */
36@RunWith(AndroidJUnit4.class)
37@LargeTest
38public class KernelCpuThreadReaderPerfTest {
39 @Rule
40 public final PerfStatusReporter mPerfStatusReporter = new PerfStatusReporter();
41
Misha Wagner4b32c9f2019-01-25 15:30:14 +000042 private final KernelCpuThreadReader mKernelCpuThreadReader =
Misha Wagner648d2032019-02-11 10:43:27 +000043 KernelCpuThreadReader.create(8, uid -> 1000 <= uid && uid < 2000, 0);
Misha Wagner566903a2018-10-02 10:50:12 +010044
45 @Test
46 public void timeReadCurrentProcessCpuUsage() {
47 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState();
48 assertNotNull(mKernelCpuThreadReader);
49 while (state.keepRunning()) {
50 this.mKernelCpuThreadReader.getCurrentProcessCpuUsage();
51 }
52 }
53}