Chameleon: Support the board type "REFERENCE" |
||
Issue description
Many Chameleon tests don't run on ChromeBoxes and ChromeBits by checking the board type, like:
if test_mirrored and not host.get_board_type() == 'CHROMEBOOK':
raise error.TestNAError('DUT is not Chromebook. Test Skipped')
For early development phase, the board name is defined as "REFERENCE", not "CHROMEBOOK". This case we still want to run the tests.
We may change the condition to:
if test_mirrored and host.get_board_type() in ['CHROMEBOX', 'CHROMEBIT']:
...
,
Aug 3
This bug has an owner, thus, it's been triaged. Changing status to "assigned". |
||
►
Sign in to add a comment |
||
Comment 1 by sheriffbot@chromium.org
, Feb 16 2018Status: Untriaged (was: Available)