Lines Matching refs:TEST_SERIAL
36 TEST_SERIAL = 'TEST_SERIAL'
47 mock_fastboot_commands.return_value = self.TEST_SERIAL + '\tfastboot'
52 self.assertEqual(self.TEST_SERIAL, device_serial_numbers[0])
56 mock_fastboot_commands.return_value = (self.TEST_SERIAL + '\tfastboot\n' +
62 self.assertEqual(self.TEST_SERIAL, device_serial_numbers[0])
67 mock_fastboot_commands.return_value = (self.TEST_SERIAL + '\tfastboot\r\n' +
73 self.assertEqual(self.TEST_SERIAL, device_serial_numbers[0])
78 one_device = self.TEST_SERIAL + '\tfastboot'
110 device = fastbootsubp.FastbootDevice(self.TEST_SERIAL)
113 ['fastboot', '-s', self.TEST_SERIAL, 'oem', command],
122 device = fastbootsubp.FastbootDevice(self.TEST_SERIAL)
125 ['fastboot', '-s', self.TEST_SERIAL, 'oem', command],
136 device = fastbootsubp.FastbootDevice(self.TEST_SERIAL)
146 device = fastbootsubp.FastbootDevice(self.TEST_SERIAL)
149 ['fastboot', '-s', self.TEST_SERIAL, 'get_staged', command],
159 device = fastbootsubp.FastbootDevice(self.TEST_SERIAL)
169 device = fastbootsubp.FastbootDevice(self.TEST_SERIAL)
172 ['fastboot', '-s', self.TEST_SERIAL, 'stage', command],
182 device = fastbootsubp.FastbootDevice(self.TEST_SERIAL)
192 device = fastbootsubp.FastbootDevice(self.TEST_SERIAL)
195 ['fastboot', '-s', self.TEST_SERIAL, 'getvar', self.TEST_VAR],
206 device = fastbootsubp.FastbootDevice(self.TEST_SERIAL)
214 device = fastbootsubp.FastbootDevice(self.TEST_SERIAL)
217 ['fastboot', '-s', self.TEST_SERIAL, 'reboot-bootloader'],
225 device = fastbootsubp.FastbootDevice(self.TEST_SERIAL)