2025년 3월 27일부터 AOSP를 빌드하고 기여하려면 aosp-main
대신 android-latest-release
를 사용하는 것이 좋습니다. 자세한 내용은 AOSP 변경사항을 참고하세요.
Android CTS와 통합
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
Android CTS 출시 패키지(Android 호환성 다운로드에서 다운로드 가능)에는 Khronos 적합성 테스트가 포함되며, 이러한 테스트의 하위 집합(mustpass
목록)이 있어야 통과할 수 있습니다. 타겟 API 또는 확장 프로그램을 지원하지 않는 기기의 경우 테스트를 건너뛰고 합격으로 보고할 수 있습니다.
mustpass
목록에는 OpenGL ES 2.0부터 OpenGL ES 3.2 및 Vulkan 1.1까지 적용 범위가 포함됩니다. mustpass
파일은 Khronos 적합성 테스트의 android/cts
디렉터리 아래에서 찾을 수 있습니다. 이 테스트는 cts-tradefed
유틸리티를 통해 실행 가능하며 다음과 같은 명령어를 사용해야 합니다.
cts-tradefed run cts --plan CTS-DEQP
CTS 없이 실행 복제
CTS 실행을 복제하려면 CTS 패키지의 deqp APK를 설치하고 다음 명령어를 사용합니다.
adb -d shell am start -n com.drawelements.deqp/android.app.NativeActivity -e \
cmdLine "deqp --deqp-case=dEQP-GLES3.some_group.* --deqp-gl-config-name=rgba8888d24s8 --deqp-log-filename=/sdcard/dEQP-Log.qpa
중요한 부분은 --deqp-gl-config-name=rgba8888d24s8
인수입니다. 이 인수는 테스트가 RGBA 8888 온스크린 노출 영역에서 24비트 심도의 버퍼와 8비트 스텐실 버퍼로 실행되도록 요청합니다. --deqp-case
인수를 사용하여 원하는 테스트를 설정하세요.
CTS 결과 매핑
Android CTS에서는 테스트 사례가 합격, 불합격 또는 실행 안 됨의 세 가지 상태가 될 수 있습니다(deqp에서 추가 결과 코드 제공). CTS는 자동으로 Khronos 적합성 테스트 결과 코드를 CTS 결과에 매핑합니다.
- CTS 합격에는
Pass
, NotSupported
, QualityWarning
, CompatibilityWarning
이 포함될 수 있습니다.
- CTS 불합격에는
Fail
, ResourceError
, Crash
, Timeout
, InternalError
가 포함될 수 있습니다.
이 페이지에 나와 있는 콘텐츠와 코드 샘플에는 콘텐츠 라이선스에서 설명하는 라이선스가 적용됩니다. 자바 및 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,["# Integrate with Android CTS\n\nAndroid CTS release packages (available from\n[Android Compatibility\nDownloads](/docs/compatibility/cts/downloads)) include [Khronos Conformance Tests](https://github.com/khronosgroup/vk-gl-cts) and require a subset of these\ntests (known as the `mustpass` list), to pass. For devices that do\nnot support a target API or extension, tests are skipped and reported as\npassing.\n\nThe `mustpass` list includes coverage for OpenGL ES 2.0 through\nOpenGL ES 3.2 and Vulkan 1.1. `mustpass`\nfiles can be found under the `android/cts` directory in the Khronos\nConformance Tests. You can run these tests through the `cts-tradefed`\nutility with the following command: \n\n```\ncts-tradefed run cts --plan CTS-DEQP\n```\n\nDuplicate runs without CTS\n--------------------------\n\nTo replicate the CTS run, install the deqp APK of the CTS package and use the\nfollowing command: \n\n```\nadb -d shell am start -n com.drawelements.deqp/android.app.NativeActivity -e \\\ncmdLine \"deqp --deqp-case=dEQP-GLES3.some_group.* --deqp-gl-config-name=rgba8888d24s8 --deqp-log-filename=/sdcard/dEQP-Log.qpa\n```\n\nThe important part is the `--deqp-gl-config-name=rgba8888d24s8`\nargument, which requests the tests be run on an RGBA 8888 on-screen surface\nwith a 24-bit depth buffer and an 8-bit stencil buffer. Remember to set\nthe desired tests using the `--deqp-case` argument.\n\nCTS results mapping\n-------------------\n\nIn the Android CTS, a test case can end up in one of three states: passed,\nfailed, or not executed (the deqp has more result codes available). CTS\nautomatically maps Khronos Conformance Test result codes to CTS results:\n\n- A CTS pass can include `Pass`, `NotSupported`, `QualityWarning`, and `CompatibilityWarning`.\n- A CTS failure can include `Fail`, `ResourceError`, `Crash`, `Timeout`, and `InternalError`."]]