Lines Matching +full:per +full:- +full:board
4 # SPDX-License-Identifier: GPL-2.0+
13 import board
27 [toolchain-alias]
29 [make-flags]
32 vboot=USE_STDINT=1 VBOOT_DEBUG=1 MAKEFLAGS_VBOOT=DEBUG=1 CFLAGS_EXTRA_VBOOT=-DUNROLL_LOOPS VBOOT_SO…
39 ['Active', 'arm', 'armv7', '', 'Tester', 'ARM Board 1', 'board0', ''],
40 ['Active', 'arm', 'armv7', '', 'Tester', 'ARM Board 2', 'board1', ''],
41 ['Active', 'powerpc', 'powerpc', '', 'Tester', 'PowerPC board 1', 'board2', ''],
42 ['Active', 'sandbox', 'sandbox', '', 'Tester', 'Sandbox board', 'board4', ''],
46 39403bb patman: Use --no-pager' to stop git from forking a pager
47 db6e6f2 patman: Remove the -a option
64 Besides, "-b <branch>" is not mandatory since commit fea5858e.
67 Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
71 Date: Thu Aug 14 16:48:25 2014 -0600
78 Series-changes: 7
79 - Add new patch to fix the 'reverse' bug
81 Series-version: 8
83 Change-Id: I79078f792e8b390b8a1272a8023537821d45feda
84 Reported-by: York Sun <yorksun@freescale.com>
85 Signed-off-by: Simon Glass <sjg@chromium.org>
90 Date: Sat Aug 9 11:44:32 2014 -0600
94 This code came from a different project with 2-character indentation. Fix
95 it for U-Boot.
97 Series-changes: 6
98 - Add new patch to fix indentation in teminal.py
100 Change-Id: I5a74d2ebbb3cc12a665f5c725064009ac96e8a34
101 Signed-off-by: Simon Glass <sjg@chromium.org>
106 Date: Sat Aug 9 11:08:24 2014 -0600
113 ./tools/patman/patman --test
116 Series-changes: 6
117 - Add new patch to fix patman unit tests
119 Change-Id: I3d2ca588f4933e1f9d6b1665a00e4ae58269ff3b
124 Date: Sat Aug 9 12:06:02 2014 -0600
126 patman: Remove the -a option
132 Series-changes: 6
133 - Add new patch to remove patman's -a option
135 Suggested-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
136 Change-Id: I5821a1c75154e532c46513486ca40b808de7e2cc
141 Date: Thu Aug 14 21:50:52 2014 -0600
143 patman: Use --no-pager' to stop git from forking a pager
148 Date: Fri Aug 22 15:57:39 2014 -0600
156 Series-changes: 9
157 - Add new patch to avoid changing the order of tags
159 Series-version: 9
161 Suggested-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
162 Change-Id: Ib1518588c1a189ad5c3198aae76f8654aed8d0db
172 emd-to-end test, as it mocks git, make and the tool chain. But this
175 very limited subset of 'git' arguments is supported - anything
185 self._toolchains.Add('arm-gcc', test=False)
186 self._toolchains.Add('powerpc-gcc', test=False)
189 self._boards = board.Boards()
191 self._boards.AddBoard(board.Board(*brd))
201 # Map of [board, commit] to error messages
232 result = self._RunBuildman('-H')
240 result = self._RunBuildman('-h')
257 if args[-1] == '--':
258 args = args[:-1]
259 if '-n0' in args:
261 elif args[-1] == 'upstream/master..%s' % self._test_branch:
263 elif args[:3] == ['--no-color', '--no-decorate', '--reverse']:
264 if args[-1] == self._test_branch:
292 This uses a hacked-up parser.
297 git_args = [] # Top-level arguments to git itself
298 sub_cmd = None # Git sub-command selected
299 args = [] # Arguments to the git sub-command
303 elif arg[0] == '-':
306 if git_args and git_args[-1] in ['--git-dir', '--work-tree']:
335 The command is in kwargs['pipe-list'], as a list of pipes, each a
345 if pipe_list[1] == ['wc', '-l']:
355 elif cmd == './scripts/show-gnu-make':
378 brd: Board object that is being built
411 self._boards = board.Boards()
426 self._RunControl('-b', 'badbranch')
431 ret_code = self._RunControl('-b', TEST_BRANCH)
441 self._total_builds - self._commits)
445 for board in self._boards.GetList():
446 if board.arch != 'sandbox':
447 errfile = self._builder.GetErrFile(commit, board.target)
450 ['No tool chain for %s\n' % board.arch])
455 self._RunControl('-b', TEST_BRANCH)
461 self._RunControl('-b', TEST_BRANCH, '-c2')
464 # Each board has a mrproper, config, and then one make per commit
468 """Test building a branch twice - the second time should do nothing"""
469 self._RunControl('-b', TEST_BRANCH)
471 # Each board has a mrproper, config, and then one make per commit
474 self._RunControl('-b', TEST_BRANCH, clean_dir=False)
480 """The -f flag should force a rebuild"""
481 self._RunControl('-b', TEST_BRANCH)
483 self._RunControl('-b', TEST_BRANCH, '-f', clean_dir=False)
484 # Each board has a mrproper, config, and then one make per commit
488 """The -f flag should force a rebuild"""
489 self._RunControl('-b', TEST_BRANCH, '-C')
496 self._RunControl('-b', TEST_BRANCH)
504 self._RunControl('-b', TEST_BRANCH, clean_dir=False)
509 # Now use the -F flag to force rebuild of the bad commit
510 self._RunControl('-b', TEST_BRANCH, '-F', clean_dir=False)
518 self._RunControl('-b', self._test_branch, clean_dir=False)