2025년 3월 27일부터 AOSP를 빌드하고 기여하려면 aosp-main
대신 android-latest-release
를 사용하는 것이 좋습니다. 자세한 내용은 AOSP 변경사항을 참고하세요.
측정항목 테스트
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
측정항목 테스트는 일반적으로 하드웨어 추상화 계층(HAL)을 사용하거나 하위 수준 시스템 서비스와 직접 상호작용하는 데 사용됩니다. 지속적인 테스트 서비스를 활용하려면 google-benchmark 프레임워크를 사용하여 측정항목 테스트를 빌드해야 합니다.
예
bionic/benchmarks/bionic-benchmarks에서 측정항목 테스트 모듈 설정 샘플을 참고하세요.
단계 요약
- 테스트 모듈 구성 파일은
BUILD_NATIVE_BENCHMARK
빌드 규칙을 사용해야 하므로 google-benchmark 종속 항목이 자동으로 포함됩니다.
make를 사용하여 테스트 모듈을 빌드합니다.
make -j40 bionic-benchmarks
Trade Federation 테스트 하네스를 사용하여 자동으로 설치하고 실행합니다.
make tradefed-all -j
tradefed.sh run template/local_min --template:map test=bionic-benchmarks
다음과 같이 수동으로 설치하고 실행합니다.
생성된 테스트 바이너리를 기기로 푸시합니다.
adb push ${OUT}/data/benchmarktest/bionic-benchmarks/bionic-benchmarks32 \
/data/benchmarktest/bionic-benchmarks/bionic-benchmarks32
기기에서 테스트 바이너리를 호출하여 테스트를 실행합니다.
adb shell /data/benchmarktest/bionic-benchmarks/bionic-benchmarks32
이 페이지에 나와 있는 콘텐츠와 코드 샘플에는 콘텐츠 라이선스에서 설명하는 라이선스가 적용됩니다. 자바 및 OpenJDK는 Oracle 및 Oracle 계열사의 상표 또는 등록 상표입니다.
최종 업데이트: 2025-07-27(UTC)
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-07-27(UTC)"],[],[],null,["# Metric tests are typically used for exercising hardware abstraction\nlayers (HALs) or interacting directly with lower-level system services. To\nleverage continuous testing service, metric tests should be built with\nthe [google-benchmark](https://github.com/google/benchmark)\nframework.\n\nExample\n-------\n\nSee a sample metric test module setup at:\n[bionic/benchmarks/bionic-benchmarks](https://android.googlesource.com/platform/bionic/+/android16-release/benchmarks/bionic_benchmarks.cpp)\n\nSummary of steps\n----------------\n\n1. Test module configuration file should use the `BUILD_NATIVE_BENCHMARK` build rule so that google-benchmark dependencies are included automatically.\n2. Build the test module with make:\n\n make -j40 bionic-benchmarks\n\n3. Automatic installation and run with the Trade Federation test harness:\n\n make tradefed-all -j\n tradefed.sh run template/local_min --template:map test=bionic-benchmarks\n\n4. Manually install and run like so:\n\n 1. Push the generated test binary onto device:\n\n adb push ${OUT}/data/benchmarktest/bionic-benchmarks/bionic-benchmarks32 \\\n /data/benchmarktest/bionic-benchmarks/bionic-benchmarks32\n\n 2. Execute the test by invoking test binary on device:\n\n adb shell /data/benchmarktest/bionic-benchmarks/bionic-benchmarks32"]]