ตั้งแต่วันที่ 27 มีนาคม 2025 เป็นต้นไป เราขอแนะนำให้ใช้ android-latest-release
แทน aosp-main
เพื่อสร้างและมีส่วนร่วมใน AOSP โปรดดูข้อมูลเพิ่มเติมที่หัวข้อการเปลี่ยนแปลงใน AOSP
การจัดสรรอุปกรณ์ใน Tradefed
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
เมื่อเริ่มการทดสอบ (เช่น การทดสอบการใช้เครื่องมือ) ระบบอาจต้องใช้อุปกรณ์จึงจะทํางานได้อย่างถูกต้อง หรือการทดสอบ (เช่น การทดสอบยูนิต Java บางรายการ) อาจไม่จําเป็นต้องใช้อุปกรณ์เลย หรืออาจต้องใช้อุปกรณ์หลายเครื่อง (เช่น การทดสอบโทรศัพท์ + นาฬิกา) ในทุกกรณีดังกล่าว เครื่องมือจัดการอุปกรณ์มีหน้าที่รับผิดชอบในการจัดสรรอุปกรณ์ที่จำเป็นสำหรับการทดสอบเพื่อให้การทดสอบทำงานอย่างถูกต้อง เราเรียกขั้นตอนนี้ว่าการจัดสรรอุปกรณ์หรือการเลือกอุปกรณ์
การจัดสรรจะอิงตาม DeviceSelectionOptions ที่อนุญาตให้การทดสอบประกาศพร็อพเพอร์ตี้ที่ต้องการจากอุปกรณ์ ซึ่งรวมถึง
- ระดับแบตเตอรี่
- ประเภทอุปกรณ์
- ประเภทผลิตภัณฑ์
- หมายเลขซีเรียล
ใช้อุปกรณ์จริง
การตั้งค่านี้เป็นค่าเริ่มต้นที่จะจัดสรรให้กับการทดสอบทั้งหมดที่ไม่ได้ระบุพร็อพเพอร์ตี้อุปกรณ์ ระบบจะเลือกอุปกรณ์จริงแบบสุ่มที่มีสถานะพร้อมใช้งานแล้วกำหนดให้ทำการทดสอบ
ไม่ใช้อุปกรณ์
เมื่อการทดสอบไม่จําเป็นต้องใช้อุปกรณ์ ก็สามารถระบุ --null-device
หรือ -n
ในบรรทัดคําสั่ง หรือ <option name="null-device" value="true" />
ใน XML ของการกําหนดค่า ซึ่งจะจัดสรรตัวยึดตำแหน่ง NullDevice ที่แสดงว่าไม่มีการจัดสรรอุปกรณ์
ตัวอย่างเนื้อหาและโค้ดในหน้าเว็บนี้ขึ้นอยู่กับใบอนุญาตที่อธิบายไว้ในใบอนุญาตการใช้เนื้อหา 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,["# Device allocation in Tradefed\n\nWhen starting a test (for example, an instrumentation test), it might need a\ndevice to be able to run properly. Or the test (such as some Java unit tests)\nmight not need a device at all. Still others or might even need multi-devices\n(like phone + watch tests). In all those cases, the Device Manager is\nresponsible for allocating the required devices to the test so it runs\nproperly. We call this phase the *device allocation* or *device selection* step.\n\nThe allocation is driven by\n[DeviceSelectionOptions](https://android.googlesource.com/platform/tools/tradefederation/+/refs/heads/android16-release/src/com/android/tradefed/device/DeviceSelectionOptions.java)\nthat allow a test to declare any properties it needs from a device, including:\n\n- Battery level\n- Device type\n- Product type\n- Serial number\n\nUse real devices\n----------------\n\nThis is the default setting that will be allocated to all tests that don't\nspecify any device properties. A physical random device marked\n[AVAILABLE](/docs/core/tests/tradefed/architecture/device-manager#allocation_states)\nwill be picked and assigned to the test.\n\nUse no devices\n--------------\n\nWhen no devices are needed by the test, it can specify `--null-device` or `-n`\non its command line, or `\u003coption name=\"null-device\" value=\"true\" /\u003e` in its\nconfiguration XML. This allocates a stub placeholder NullDevice that\nrepresents no device was allocated."]]