| Index: telemetry/telemetry/core/cros_interface_unittest.py
|
| diff --git a/telemetry/telemetry/core/cros_interface_unittest.py b/telemetry/telemetry/core/cros_interface_unittest.py
|
| index 47480a4bcd9926b5a647bb1d66f0540a74fe488b..07b7f6be5fe2ea2517cdcdd7f18bd1738811d303 100644
|
| --- a/telemetry/telemetry/core/cros_interface_unittest.py
|
| +++ b/telemetry/telemetry/core/cros_interface_unittest.py
|
| @@ -147,6 +147,14 @@ class CrOSInterfaceTest(unittest.TestCase):
|
| '/var/log/screenshots/test-prefix-0.png'))
|
| _Cleanup()
|
|
|
| + @decorators.Enabled('chromeos')
|
| + def testLsbReleaseValue(self):
|
| + with self._GetCRI() as cri:
|
| + build_num = cri.LsbReleaseValue('CHROMEOS_RELEASE_BUILD_NUMBER', None)
|
| + self.assertTrue(build_num.isdigit())
|
| + device_type = cri.LsbReleaseValue('DEVICETYPE', None)
|
| + self.assertTrue(device_type.isalpha())
|
| +
|
| # TODO(tengs): It would be best if we can filter this test and other tests
|
| # that need to be run locally based on the platform of the system browser.
|
| @decorators.Enabled('linux')
|
|
|