ตั้งแต่วันที่ 27 มีนาคม 2025 เป็นต้นไป เราขอแนะนำให้ใช้ android-latest-release
แทน aosp-main
เพื่อสร้างและมีส่วนร่วมใน AOSP โปรดดูข้อมูลเพิ่มเติมที่หัวข้อการเปลี่ยนแปลงใน AOSP
ผสานรวมกับ Android CTS
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
แพ็กเกจรุ่น Android CTS (ดาวน์โหลดได้จากการดาวน์โหลดความเข้ากันได้ของ Android) มีการทดสอบการปฏิบัติตามข้อกำหนดของ Khronos และต้องผ่านการทดสอบชุดย่อยเหล่านี้ (เรียกว่ารายการ mustpass
) สําหรับอุปกรณ์ที่ไม่รองรับ API หรือส่วนขยายเป้าหมาย ระบบจะข้ามการทดสอบและรายงานเป็น "ผ่าน"
รายการ mustpass
ครอบคลุม OpenGL ES 2.0 ถึง OpenGL ES 3.2 และ Vulkan 1.1 ไฟล์ mustpass
จะอยู่ในไดเรกทอรี android/cts
ในการทดสอบการปฏิบัติตามข้อกำหนดของ Khronos
คุณสามารถเรียกใช้การทดสอบเหล่านี้ผ่านcts-tradefed
utility ด้วยคำสั่งต่อไปนี้
cts-tradefed run cts --plan CTS-DEQP
การทำงานซ้ำที่ไม่มี CTS
หากต้องการจำลองการเรียกใช้ CTS ให้ติดตั้ง APK deqp ของแพ็กเกจ CTS และใช้คำสั่งต่อไปนี้
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
ตัวอย่างเนื้อหาและโค้ดในหน้าเว็บนี้ขึ้นอยู่กับใบอนุญาตที่อธิบายไว้ในใบอนุญาตการใช้เนื้อหา Java และ OpenJDK เป็นเครื่องหมายการค้าหรือเครื่องหมายการค้าจดทะเบียนของ 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`."]]