Od 27 marca 2025 r. zalecamy używanie android-latest-release
zamiast aosp-main
do kompilowania i wspołtworzenia AOSP. Więcej informacji znajdziesz w artykule o zmianach w AOSP.
Integracja z Android CTS
Zadbaj o dobrą organizację dzięki kolekcji
Zapisuj i kategoryzuj treści zgodnie ze swoimi preferencjami.
Pakiety wersji Android CTS (dostępne w Android Compatibility Downloads) obejmują testy zgodności Khronos i wymagają, aby podzbiór tych testów (znany jako lista mustpass
) został zaliczony. W przypadku urządzeń, które nie obsługują docelowego interfejsu API lub rozszerzenia, testy są pomijane i zgłaszane jako pozytywne.
Lista mustpass
obejmuje wersje od OpenGL ES 2.0 do OpenGL ES 3.2 oraz Vulkan 1.1. Pliki mustpass
znajdziesz w katalogu android/cts
w ramach testów zgodności Khronos. Możesz uruchomić te testy za pomocą narzędzia cts-tradefed
za pomocą tego polecenia:
cts-tradefed run cts --plan CTS-DEQP
Duplikaty testów bez pakietu CTS
Aby odtworzyć działanie CTS, zainstaluj pakiet APK deqp i uruchom to polecenie:
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
Ważnym elementem jest argument --deqp-gl-config-name=rgba8888d24s8
, który prosi o przeprowadzenie testów na ekranowej powierzchni RGBA 8888 z 24-bitowym buforem głębi i 8-bitowym buforem szablonu. Pamiętaj, aby ustawić odpowiednie testy za pomocą argumentu --deqp-case
.
Mapowanie wyników CTS
W przypadku testów Android CTS przypadek testowy może mieć jeden z 3 stanów: „przeszło”, „niepowodzenie” lub „niewykonano” (deqp ma więcej dostępnych kodów wyników). CTS automatycznie mapuje kody wyników testów zgodności Khronos na wyniki CTS:
- Certyfikat CTS może obejmować
Pass
, NotSupported
,
QualityWarning
i CompatibilityWarning
.
- Awaria CTS może obejmować
Fail
, ResourceError
, Crash
, Timeout
i InternalError
.
Treść strony i umieszczone na niej fragmenty kodu podlegają licencjom opisanym w Licencji na treści. Java i OpenJDK są znakami towarowymi lub zastrzeżonymi znakami towarowymi należącymi do firmy Oracle lub jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2025-07-27 UTC.
[[["Łatwo zrozumieć","easyToUnderstand","thumb-up"],["Rozwiązało to mój problem","solvedMyProblem","thumb-up"],["Inne","otherUp","thumb-up"]],[["Brak potrzebnych mi informacji","missingTheInformationINeed","thumb-down"],["Zbyt skomplikowane / zbyt wiele czynności do wykonania","tooComplicatedTooManySteps","thumb-down"],["Nieaktualne treści","outOfDate","thumb-down"],["Problem z tłumaczeniem","translationIssue","thumb-down"],["Problem z przykładami/kodem","samplesCodeIssue","thumb-down"],["Inne","otherDown","thumb-down"]],["Ostatnia aktualizacja: 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`."]]