Home | History | Annotate | Download | only in hosts

Lines Matching full:devices

25         """Test locate_device call can allocate devices by given builds.
40 devices = testbed_1.locate_devices(images)
41 self.assertEqual(devices, dict(zip(serials, [BOARD_1_BUILD_1]*3)))
45 """Test locate_device call cannot allocate devices by given builds.
48 less than the number of devices the testbed has, it should fail to
49 locate devices for the test.
68 """Test locate_device call cannot allocate devices by given builds.
70 If the given builds are more than the number of devices the testbed has,
71 it should fail to locate devices for the test.
91 """Test locate_device call can allocate devices by given builds.
94 less than the number of devices the testbed has, it should return all
95 devices with the same build.
110 devices = testbed_1.locate_devices(images)
111 self.assertEqual(devices, dict(zip(serials, [BOARD_1_BUILD_1]*3)))
115 """Test locate_device call can allocate devices by given builds for
136 devices = testbed_1.locate_devices(images)
139 self.assertEqual(devices, expected)