mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
buildman: Fix up tests
The tests were broken by two separate commits which adjusted the output when boards are listed. Fix this by adding back a PowerPC board and putting the name of each board in the test. Fixes:b9f7d881
(powerpc, 5xx: remove some "5xx" remains) Fixes:8d7523c5
(buildman: Allow showing the list of boards with -n) Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
cb39a10979
commit
251f5867c9
1 changed files with 21 additions and 10 deletions
|
@ -91,6 +91,7 @@ boards = [
|
|||
['Active', 'arm', 'armv7', '', 'Tester', 'ARM Board 1', 'board0', ''],
|
||||
['Active', 'arm', 'armv7', '', 'Tester', 'ARM Board 2', 'board1', ''],
|
||||
['Active', 'powerpc', 'powerpc', '', 'Tester', 'PowerPC board 1', 'board2', ''],
|
||||
['Active', 'powerpc', 'mpc83xx', '', 'Tester', 'PowerPC board 2', 'board3', ''],
|
||||
['Active', 'sandbox', 'sandbox', '', 'Tester', 'Sandbox board', 'board4', ''],
|
||||
]
|
||||
|
||||
|
@ -313,50 +314,60 @@ class TestBuild(unittest.TestCase):
|
|||
def testBoardSingle(self):
|
||||
"""Test single board selection"""
|
||||
self.assertEqual(self.boards.SelectBoards(['sandbox']),
|
||||
{'all': 1, 'sandbox': 1})
|
||||
{'all': ['board4'], 'sandbox': ['board4']})
|
||||
|
||||
def testBoardArch(self):
|
||||
"""Test single board selection"""
|
||||
self.assertEqual(self.boards.SelectBoards(['arm']),
|
||||
{'all': 2, 'arm': 2})
|
||||
{'all': ['board0', 'board1'],
|
||||
'arm': ['board0', 'board1']})
|
||||
|
||||
def testBoardArchSingle(self):
|
||||
"""Test single board selection"""
|
||||
self.assertEqual(self.boards.SelectBoards(['arm sandbox']),
|
||||
{'all': 3, 'arm': 2, 'sandbox' : 1})
|
||||
{'sandbox': ['board4'],
|
||||
'all': ['board0', 'board1', 'board4'],
|
||||
'arm': ['board0', 'board1']})
|
||||
|
||||
|
||||
def testBoardArchSingleMultiWord(self):
|
||||
"""Test single board selection"""
|
||||
self.assertEqual(self.boards.SelectBoards(['arm', 'sandbox']),
|
||||
{'all': 3, 'arm': 2, 'sandbox' : 1})
|
||||
{'sandbox': ['board4'], 'all': ['board0', 'board1', 'board4'], 'arm': ['board0', 'board1']})
|
||||
|
||||
def testBoardSingleAnd(self):
|
||||
"""Test single board selection"""
|
||||
self.assertEqual(self.boards.SelectBoards(['Tester & arm']),
|
||||
{'all': 2, 'Tester&arm': 2})
|
||||
{'Tester&arm': ['board0', 'board1'], 'all': ['board0', 'board1']})
|
||||
|
||||
def testBoardTwoAnd(self):
|
||||
"""Test single board selection"""
|
||||
self.assertEqual(self.boards.SelectBoards(['Tester', '&', 'arm',
|
||||
'Tester' '&', 'powerpc',
|
||||
'sandbox']),
|
||||
{'all': 5, 'Tester&powerpc': 2, 'Tester&arm': 2,
|
||||
'sandbox' : 1})
|
||||
{'sandbox': ['board4'],
|
||||
'all': ['board0', 'board1', 'board2', 'board3',
|
||||
'board4'],
|
||||
'Tester&powerpc': ['board2', 'board3'],
|
||||
'Tester&arm': ['board0', 'board1']})
|
||||
|
||||
def testBoardAll(self):
|
||||
"""Test single board selection"""
|
||||
self.assertEqual(self.boards.SelectBoards([]), {'all': 5})
|
||||
self.assertEqual(self.boards.SelectBoards([]),
|
||||
{'all': ['board0', 'board1', 'board2', 'board3',
|
||||
'board4']})
|
||||
|
||||
def testBoardRegularExpression(self):
|
||||
"""Test single board selection"""
|
||||
self.assertEqual(self.boards.SelectBoards(['T.*r&^Po']),
|
||||
{'T.*r&^Po': 2, 'all': 2})
|
||||
{'all': ['board2', 'board3'],
|
||||
'T.*r&^Po': ['board2', 'board3']})
|
||||
|
||||
def testBoardDuplicate(self):
|
||||
"""Test single board selection"""
|
||||
self.assertEqual(self.boards.SelectBoards(['sandbox sandbox',
|
||||
'sandbox']),
|
||||
{'all': 1, 'sandbox': 1})
|
||||
{'all': ['board4'], 'sandbox': ['board4']})
|
||||
def CheckDirs(self, build, dirname):
|
||||
self.assertEqual('base%s' % dirname, build._GetOutputDir(1))
|
||||
self.assertEqual('base%s/fred' % dirname,
|
||||
|
|
Loading…
Reference in a new issue