blob: 34ac4fb06247fcf6a56acb387c7e8c3e098bfce3 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0
Stephen Warren10e50632016-01-15 11:15:24 -07002# Copyright (c) 2015 Stephen Warren
3# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
Stephen Warren10e50632016-01-15 11:15:24 -07004
5# Implementation of pytest run-time hook functions. These are invoked by
6# pytest at certain points during operation, e.g. startup, for each executed
7# test, at shutdown etc. These hooks perform functions such as:
8# - Parsing custom command-line options.
9# - Pullilng in user-specified board configuration.
10# - Creating the U-Boot console test fixture.
11# - Creating the HTML log file.
12# - Monitoring each test's results.
13# - Implementing custom pytest markers.
14
15import atexit
Tom Rini6a990412019-10-24 11:59:21 -040016import configparser
Stephen Warren10e50632016-01-15 11:15:24 -070017import errno
Tom Rini6a990412019-10-24 11:59:21 -040018import io
Stephen Warren10e50632016-01-15 11:15:24 -070019import os
20import os.path
Stephen Warren10e50632016-01-15 11:15:24 -070021import pytest
Stephen Warren770fe172016-02-08 14:44:16 -070022import re
Tom Rini6a990412019-10-24 11:59:21 -040023from _pytest.runner import runtestprotocol
Stephen Warren10e50632016-01-15 11:15:24 -070024import sys
25
26# Globals: The HTML log file, and the connection to the U-Boot console.
27log = None
28console = None
29
30def mkdir_p(path):
Stephen Warren75e731e2016-01-26 13:41:30 -070031 """Create a directory path.
Stephen Warren10e50632016-01-15 11:15:24 -070032
33 This includes creating any intermediate/parent directories. Any errors
34 caused due to already extant directories are ignored.
35
36 Args:
37 path: The directory path to create.
38
39 Returns:
40 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -070041 """
Stephen Warren10e50632016-01-15 11:15:24 -070042
43 try:
44 os.makedirs(path)
45 except OSError as exc:
46 if exc.errno == errno.EEXIST and os.path.isdir(path):
47 pass
48 else:
49 raise
50
51def pytest_addoption(parser):
Stephen Warren75e731e2016-01-26 13:41:30 -070052 """pytest hook: Add custom command-line options to the cmdline parser.
Stephen Warren10e50632016-01-15 11:15:24 -070053
54 Args:
55 parser: The pytest command-line parser.
56
57 Returns:
58 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -070059 """
Stephen Warren10e50632016-01-15 11:15:24 -070060
61 parser.addoption('--build-dir', default=None,
62 help='U-Boot build directory (O=)')
63 parser.addoption('--result-dir', default=None,
64 help='U-Boot test result/tmp directory')
65 parser.addoption('--persistent-data-dir', default=None,
66 help='U-Boot test persistent generated data directory')
67 parser.addoption('--board-type', '--bd', '-B', default='sandbox',
68 help='U-Boot board type')
69 parser.addoption('--board-identity', '--id', default='na',
70 help='U-Boot board identity/instance')
71 parser.addoption('--build', default=False, action='store_true',
72 help='Compile U-Boot before running tests')
Stephen Warren33db1ee2016-02-04 16:11:50 -070073 parser.addoption('--gdbserver', default=None,
74 help='Run sandbox under gdbserver. The argument is the channel '+
75 'over which gdbserver should communicate, e.g. localhost:1234')
Stephen Warren10e50632016-01-15 11:15:24 -070076
77def pytest_configure(config):
Stephen Warren75e731e2016-01-26 13:41:30 -070078 """pytest hook: Perform custom initialization at startup time.
Stephen Warren10e50632016-01-15 11:15:24 -070079
80 Args:
81 config: The pytest configuration.
82
83 Returns:
84 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -070085 """
Simon Glassde8e25b2019-12-01 19:34:18 -070086 def parse_config(conf_file):
87 """Parse a config file, loading it into the ubconfig container
88
89 Args:
90 conf_file: Filename to load (within build_dir)
91
92 Raises
93 Exception if the file does not exist
94 """
95 dot_config = build_dir + '/' + conf_file
96 if not os.path.exists(dot_config):
97 raise Exception(conf_file + ' does not exist; ' +
98 'try passing --build option?')
99
100 with open(dot_config, 'rt') as f:
101 ini_str = '[root]\n' + f.read()
102 ini_sio = io.StringIO(ini_str)
103 parser = configparser.RawConfigParser()
104 parser.read_file(ini_sio)
105 ubconfig.buildconfig.update(parser.items('root'))
Stephen Warren10e50632016-01-15 11:15:24 -0700106
107 global log
108 global console
109 global ubconfig
110
111 test_py_dir = os.path.dirname(os.path.abspath(__file__))
112 source_dir = os.path.dirname(os.path.dirname(test_py_dir))
113
114 board_type = config.getoption('board_type')
115 board_type_filename = board_type.replace('-', '_')
116
117 board_identity = config.getoption('board_identity')
118 board_identity_filename = board_identity.replace('-', '_')
119
120 build_dir = config.getoption('build_dir')
121 if not build_dir:
122 build_dir = source_dir + '/build-' + board_type
123 mkdir_p(build_dir)
124
125 result_dir = config.getoption('result_dir')
126 if not result_dir:
127 result_dir = build_dir
128 mkdir_p(result_dir)
129
130 persistent_data_dir = config.getoption('persistent_data_dir')
131 if not persistent_data_dir:
132 persistent_data_dir = build_dir + '/persistent-data'
133 mkdir_p(persistent_data_dir)
134
Stephen Warren33db1ee2016-02-04 16:11:50 -0700135 gdbserver = config.getoption('gdbserver')
Igor Opaniukea5f17d2019-02-12 16:18:14 +0200136 if gdbserver and not board_type.startswith('sandbox'):
137 raise Exception('--gdbserver only supported with sandbox targets')
Stephen Warren33db1ee2016-02-04 16:11:50 -0700138
Stephen Warren10e50632016-01-15 11:15:24 -0700139 import multiplexed_log
140 log = multiplexed_log.Logfile(result_dir + '/test-log.html')
141
142 if config.getoption('build'):
143 if build_dir != source_dir:
144 o_opt = 'O=%s' % build_dir
145 else:
146 o_opt = ''
147 cmds = (
148 ['make', o_opt, '-s', board_type + '_defconfig'],
149 ['make', o_opt, '-s', '-j8'],
150 )
Stephen Warrene3f2a502016-02-03 16:46:34 -0700151 with log.section('make'):
152 runner = log.get_runner('make', sys.stdout)
153 for cmd in cmds:
154 runner.run(cmd, cwd=source_dir)
155 runner.close()
156 log.status_pass('OK')
Stephen Warren10e50632016-01-15 11:15:24 -0700157
158 class ArbitraryAttributeContainer(object):
159 pass
160
161 ubconfig = ArbitraryAttributeContainer()
162 ubconfig.brd = dict()
163 ubconfig.env = dict()
164
165 modules = [
166 (ubconfig.brd, 'u_boot_board_' + board_type_filename),
167 (ubconfig.env, 'u_boot_boardenv_' + board_type_filename),
168 (ubconfig.env, 'u_boot_boardenv_' + board_type_filename + '_' +
169 board_identity_filename),
170 ]
171 for (dict_to_fill, module_name) in modules:
172 try:
173 module = __import__(module_name)
174 except ImportError:
175 continue
176 dict_to_fill.update(module.__dict__)
177
178 ubconfig.buildconfig = dict()
179
Simon Glassde8e25b2019-12-01 19:34:18 -0700180 # buildman -k puts autoconf.mk in the rootdir, so handle this as well
181 # as the standard U-Boot build which leaves it in include/autoconf.mk
182 parse_config('.config')
183 if os.path.exists(build_dir + '/' + 'autoconf.mk'):
184 parse_config('autoconf.mk')
185 else:
186 parse_config('include/autoconf.mk')
Stephen Warren10e50632016-01-15 11:15:24 -0700187
188 ubconfig.test_py_dir = test_py_dir
189 ubconfig.source_dir = source_dir
190 ubconfig.build_dir = build_dir
191 ubconfig.result_dir = result_dir
192 ubconfig.persistent_data_dir = persistent_data_dir
193 ubconfig.board_type = board_type
194 ubconfig.board_identity = board_identity
Stephen Warren33db1ee2016-02-04 16:11:50 -0700195 ubconfig.gdbserver = gdbserver
Simon Glass3b097872016-07-03 09:40:36 -0600196 ubconfig.dtb = build_dir + '/arch/sandbox/dts/test.dtb'
Stephen Warren10e50632016-01-15 11:15:24 -0700197
198 env_vars = (
199 'board_type',
200 'board_identity',
201 'source_dir',
202 'test_py_dir',
203 'build_dir',
204 'result_dir',
205 'persistent_data_dir',
206 )
207 for v in env_vars:
208 os.environ['U_BOOT_' + v.upper()] = getattr(ubconfig, v)
209
Simon Glass13f422e2016-07-04 11:58:37 -0600210 if board_type.startswith('sandbox'):
Stephen Warren10e50632016-01-15 11:15:24 -0700211 import u_boot_console_sandbox
212 console = u_boot_console_sandbox.ConsoleSandbox(log, ubconfig)
213 else:
214 import u_boot_console_exec_attach
215 console = u_boot_console_exec_attach.ConsoleExecAttach(log, ubconfig)
216
Simon Glass71861672017-11-25 11:57:32 -0700217re_ut_test_list = re.compile(r'_u_boot_list_2_(.*)_test_2_\1_test_(.*)\s*$')
Stephen Warren770fe172016-02-08 14:44:16 -0700218def generate_ut_subtest(metafunc, fixture_name):
219 """Provide parametrization for a ut_subtest fixture.
220
221 Determines the set of unit tests built into a U-Boot binary by parsing the
222 list of symbols generated by the build process. Provides this information
223 to test functions by parameterizing their ut_subtest fixture parameter.
224
225 Args:
226 metafunc: The pytest test function.
227 fixture_name: The fixture name to test.
228
229 Returns:
230 Nothing.
231 """
232
233 fn = console.config.build_dir + '/u-boot.sym'
234 try:
235 with open(fn, 'rt') as f:
236 lines = f.readlines()
237 except:
238 lines = []
239 lines.sort()
240
241 vals = []
242 for l in lines:
243 m = re_ut_test_list.search(l)
244 if not m:
245 continue
246 vals.append(m.group(1) + ' ' + m.group(2))
247
248 ids = ['ut_' + s.replace(' ', '_') for s in vals]
249 metafunc.parametrize(fixture_name, vals, ids=ids)
250
251def generate_config(metafunc, fixture_name):
252 """Provide parametrization for {env,brd}__ fixtures.
Stephen Warren10e50632016-01-15 11:15:24 -0700253
254 If a test function takes parameter(s) (fixture names) of the form brd__xxx
255 or env__xxx, the brd and env configuration dictionaries are consulted to
256 find the list of values to use for those parameters, and the test is
257 parametrized so that it runs once for each combination of values.
258
259 Args:
260 metafunc: The pytest test function.
Stephen Warren770fe172016-02-08 14:44:16 -0700261 fixture_name: The fixture name to test.
Stephen Warren10e50632016-01-15 11:15:24 -0700262
263 Returns:
264 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700265 """
Stephen Warren10e50632016-01-15 11:15:24 -0700266
267 subconfigs = {
268 'brd': console.config.brd,
269 'env': console.config.env,
270 }
Stephen Warren770fe172016-02-08 14:44:16 -0700271 parts = fixture_name.split('__')
272 if len(parts) < 2:
273 return
274 if parts[0] not in subconfigs:
275 return
276 subconfig = subconfigs[parts[0]]
277 vals = []
278 val = subconfig.get(fixture_name, [])
279 # If that exact name is a key in the data source:
280 if val:
281 # ... use the dict value as a single parameter value.
282 vals = (val, )
283 else:
284 # ... otherwise, see if there's a key that contains a list of
285 # values to use instead.
286 vals = subconfig.get(fixture_name+ 's', [])
287 def fixture_id(index, val):
288 try:
289 return val['fixture_id']
290 except:
291 return fixture_name + str(index)
292 ids = [fixture_id(index, val) for (index, val) in enumerate(vals)]
293 metafunc.parametrize(fixture_name, vals, ids=ids)
294
295def pytest_generate_tests(metafunc):
296 """pytest hook: parameterize test functions based on custom rules.
297
298 Check each test function parameter (fixture name) to see if it is one of
299 our custom names, and if so, provide the correct parametrization for that
300 parameter.
301
302 Args:
303 metafunc: The pytest test function.
304
305 Returns:
306 Nothing.
307 """
308
Stephen Warren10e50632016-01-15 11:15:24 -0700309 for fn in metafunc.fixturenames:
Stephen Warren770fe172016-02-08 14:44:16 -0700310 if fn == 'ut_subtest':
311 generate_ut_subtest(metafunc, fn)
Stephen Warren10e50632016-01-15 11:15:24 -0700312 continue
Stephen Warren770fe172016-02-08 14:44:16 -0700313 generate_config(metafunc, fn)
Stephen Warren10e50632016-01-15 11:15:24 -0700314
Stefan Brüns364ea872016-11-05 17:45:32 +0100315@pytest.fixture(scope='session')
316def u_boot_log(request):
317 """Generate the value of a test's log fixture.
318
319 Args:
320 request: The pytest request.
321
322 Returns:
323 The fixture value.
324 """
325
326 return console.log
327
328@pytest.fixture(scope='session')
329def u_boot_config(request):
330 """Generate the value of a test's u_boot_config fixture.
331
332 Args:
333 request: The pytest request.
334
335 Returns:
336 The fixture value.
337 """
338
339 return console.config
340
Stephen Warrene1d24d02016-01-22 12:30:08 -0700341@pytest.fixture(scope='function')
Stephen Warren10e50632016-01-15 11:15:24 -0700342def u_boot_console(request):
Stephen Warren75e731e2016-01-26 13:41:30 -0700343 """Generate the value of a test's u_boot_console fixture.
Stephen Warren10e50632016-01-15 11:15:24 -0700344
345 Args:
346 request: The pytest request.
347
348 Returns:
349 The fixture value.
Stephen Warren75e731e2016-01-26 13:41:30 -0700350 """
Stephen Warren10e50632016-01-15 11:15:24 -0700351
Stephen Warrene1d24d02016-01-22 12:30:08 -0700352 console.ensure_spawned()
Stephen Warren10e50632016-01-15 11:15:24 -0700353 return console
354
Stephen Warrene3f2a502016-02-03 16:46:34 -0700355anchors = {}
Stephen Warrenaaf4e912016-02-10 13:47:37 -0700356tests_not_run = []
357tests_failed = []
358tests_xpassed = []
359tests_xfailed = []
360tests_skipped = []
Stephen Warrene27a6ae2018-02-20 12:51:55 -0700361tests_warning = []
Stephen Warrenaaf4e912016-02-10 13:47:37 -0700362tests_passed = []
Stephen Warren10e50632016-01-15 11:15:24 -0700363
364def pytest_itemcollected(item):
Stephen Warren75e731e2016-01-26 13:41:30 -0700365 """pytest hook: Called once for each test found during collection.
Stephen Warren10e50632016-01-15 11:15:24 -0700366
367 This enables our custom result analysis code to see the list of all tests
368 that should eventually be run.
369
370 Args:
371 item: The item that was collected.
372
373 Returns:
374 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700375 """
Stephen Warren10e50632016-01-15 11:15:24 -0700376
Stephen Warrenaaf4e912016-02-10 13:47:37 -0700377 tests_not_run.append(item.name)
Stephen Warren10e50632016-01-15 11:15:24 -0700378
379def cleanup():
Stephen Warren75e731e2016-01-26 13:41:30 -0700380 """Clean up all global state.
Stephen Warren10e50632016-01-15 11:15:24 -0700381
382 Executed (via atexit) once the entire test process is complete. This
383 includes logging the status of all tests, and the identity of any failed
384 or skipped tests.
385
386 Args:
387 None.
388
389 Returns:
390 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700391 """
Stephen Warren10e50632016-01-15 11:15:24 -0700392
393 if console:
394 console.close()
395 if log:
Stephen Warrene3f2a502016-02-03 16:46:34 -0700396 with log.section('Status Report', 'status_report'):
397 log.status_pass('%d passed' % len(tests_passed))
Stephen Warrene27a6ae2018-02-20 12:51:55 -0700398 if tests_warning:
399 log.status_warning('%d passed with warning' % len(tests_warning))
400 for test in tests_warning:
401 anchor = anchors.get(test, None)
402 log.status_warning('... ' + test, anchor)
Stephen Warrene3f2a502016-02-03 16:46:34 -0700403 if tests_skipped:
404 log.status_skipped('%d skipped' % len(tests_skipped))
405 for test in tests_skipped:
406 anchor = anchors.get(test, None)
407 log.status_skipped('... ' + test, anchor)
408 if tests_xpassed:
409 log.status_xpass('%d xpass' % len(tests_xpassed))
410 for test in tests_xpassed:
411 anchor = anchors.get(test, None)
412 log.status_xpass('... ' + test, anchor)
413 if tests_xfailed:
414 log.status_xfail('%d xfail' % len(tests_xfailed))
415 for test in tests_xfailed:
416 anchor = anchors.get(test, None)
417 log.status_xfail('... ' + test, anchor)
418 if tests_failed:
419 log.status_fail('%d failed' % len(tests_failed))
420 for test in tests_failed:
421 anchor = anchors.get(test, None)
422 log.status_fail('... ' + test, anchor)
423 if tests_not_run:
424 log.status_fail('%d not run' % len(tests_not_run))
425 for test in tests_not_run:
426 anchor = anchors.get(test, None)
427 log.status_fail('... ' + test, anchor)
Stephen Warren10e50632016-01-15 11:15:24 -0700428 log.close()
429atexit.register(cleanup)
430
431def setup_boardspec(item):
Stephen Warren75e731e2016-01-26 13:41:30 -0700432 """Process any 'boardspec' marker for a test.
Stephen Warren10e50632016-01-15 11:15:24 -0700433
434 Such a marker lists the set of board types that a test does/doesn't
435 support. If tests are being executed on an unsupported board, the test is
436 marked to be skipped.
437
438 Args:
439 item: The pytest test item.
440
441 Returns:
442 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700443 """
Stephen Warren10e50632016-01-15 11:15:24 -0700444
Stephen Warren10e50632016-01-15 11:15:24 -0700445 required_boards = []
Marek Vasut9dfdf6e2019-10-24 11:59:19 -0400446 for boards in item.iter_markers('boardspec'):
447 board = boards.args[0]
Stephen Warren10e50632016-01-15 11:15:24 -0700448 if board.startswith('!'):
449 if ubconfig.board_type == board[1:]:
Stephen Warren0f0eeac2017-09-18 11:11:48 -0600450 pytest.skip('board "%s" not supported' % ubconfig.board_type)
Stephen Warren10e50632016-01-15 11:15:24 -0700451 return
452 else:
453 required_boards.append(board)
454 if required_boards and ubconfig.board_type not in required_boards:
Stephen Warren0f0eeac2017-09-18 11:11:48 -0600455 pytest.skip('board "%s" not supported' % ubconfig.board_type)
Stephen Warren10e50632016-01-15 11:15:24 -0700456
457def setup_buildconfigspec(item):
Stephen Warren75e731e2016-01-26 13:41:30 -0700458 """Process any 'buildconfigspec' marker for a test.
Stephen Warren10e50632016-01-15 11:15:24 -0700459
460 Such a marker lists some U-Boot configuration feature that the test
461 requires. If tests are being executed on an U-Boot build that doesn't
462 have the required feature, the test is marked to be skipped.
463
464 Args:
465 item: The pytest test item.
466
467 Returns:
468 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700469 """
Stephen Warren10e50632016-01-15 11:15:24 -0700470
Marek Vasut9dfdf6e2019-10-24 11:59:19 -0400471 for options in item.iter_markers('buildconfigspec'):
472 option = options.args[0]
473 if not ubconfig.buildconfig.get('config_' + option.lower(), None):
474 pytest.skip('.config feature "%s" not enabled' % option.lower())
Cristian Ciocaltea6c6c8072019-12-24 17:19:12 +0200475 for options in item.iter_markers('notbuildconfigspec'):
Marek Vasut9dfdf6e2019-10-24 11:59:19 -0400476 option = options.args[0]
477 if ubconfig.buildconfig.get('config_' + option.lower(), None):
478 pytest.skip('.config feature "%s" enabled' % option.lower())
Stephen Warren10e50632016-01-15 11:15:24 -0700479
Stephen Warren2079db32017-09-18 11:11:49 -0600480def tool_is_in_path(tool):
481 for path in os.environ["PATH"].split(os.pathsep):
482 fn = os.path.join(path, tool)
483 if os.path.isfile(fn) and os.access(fn, os.X_OK):
484 return True
485 return False
486
487def setup_requiredtool(item):
488 """Process any 'requiredtool' marker for a test.
489
490 Such a marker lists some external tool (binary, executable, application)
491 that the test requires. If tests are being executed on a system that
492 doesn't have the required tool, the test is marked to be skipped.
493
494 Args:
495 item: The pytest test item.
496
497 Returns:
498 Nothing.
499 """
500
Marek Vasut9dfdf6e2019-10-24 11:59:19 -0400501 for tools in item.iter_markers('requiredtool'):
502 tool = tools.args[0]
Stephen Warren2079db32017-09-18 11:11:49 -0600503 if not tool_is_in_path(tool):
504 pytest.skip('tool "%s" not in $PATH' % tool)
505
Stephen Warren3e3d1432016-10-17 17:25:52 -0600506def start_test_section(item):
507 anchors[item.name] = log.start_section(item.name)
508
Stephen Warren10e50632016-01-15 11:15:24 -0700509def pytest_runtest_setup(item):
Stephen Warren75e731e2016-01-26 13:41:30 -0700510 """pytest hook: Configure (set up) a test item.
Stephen Warren10e50632016-01-15 11:15:24 -0700511
512 Called once for each test to perform any custom configuration. This hook
513 is used to skip the test if certain conditions apply.
514
515 Args:
516 item: The pytest test item.
517
518 Returns:
519 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700520 """
Stephen Warren10e50632016-01-15 11:15:24 -0700521
Stephen Warren3e3d1432016-10-17 17:25:52 -0600522 start_test_section(item)
Stephen Warren10e50632016-01-15 11:15:24 -0700523 setup_boardspec(item)
524 setup_buildconfigspec(item)
Stephen Warren2079db32017-09-18 11:11:49 -0600525 setup_requiredtool(item)
Stephen Warren10e50632016-01-15 11:15:24 -0700526
527def pytest_runtest_protocol(item, nextitem):
Stephen Warren75e731e2016-01-26 13:41:30 -0700528 """pytest hook: Called to execute a test.
Stephen Warren10e50632016-01-15 11:15:24 -0700529
530 This hook wraps the standard pytest runtestprotocol() function in order
531 to acquire visibility into, and record, each test function's result.
532
533 Args:
534 item: The pytest test item to execute.
535 nextitem: The pytest test item that will be executed after this one.
536
537 Returns:
538 A list of pytest reports (test result data).
Stephen Warren75e731e2016-01-26 13:41:30 -0700539 """
Stephen Warren10e50632016-01-15 11:15:24 -0700540
Stephen Warrene27a6ae2018-02-20 12:51:55 -0700541 log.get_and_reset_warning()
Stephen Warren10e50632016-01-15 11:15:24 -0700542 reports = runtestprotocol(item, nextitem=nextitem)
Stephen Warrene27a6ae2018-02-20 12:51:55 -0700543 was_warning = log.get_and_reset_warning()
Stephen Warren25b05242016-01-27 23:57:51 -0700544
Stephen Warren3e3d1432016-10-17 17:25:52 -0600545 # In pytest 3, runtestprotocol() may not call pytest_runtest_setup() if
546 # the test is skipped. That call is required to create the test's section
547 # in the log file. The call to log.end_section() requires that the log
548 # contain a section for this test. Create a section for the test if it
549 # doesn't already exist.
550 if not item.name in anchors:
551 start_test_section(item)
552
Stephen Warren25b05242016-01-27 23:57:51 -0700553 failure_cleanup = False
Stephen Warrene27a6ae2018-02-20 12:51:55 -0700554 if not was_warning:
555 test_list = tests_passed
556 msg = 'OK'
557 msg_log = log.status_pass
558 else:
559 test_list = tests_warning
560 msg = 'OK (with warning)'
561 msg_log = log.status_warning
Stephen Warren10e50632016-01-15 11:15:24 -0700562 for report in reports:
563 if report.outcome == 'failed':
Stephen Warren25b05242016-01-27 23:57:51 -0700564 if hasattr(report, 'wasxfail'):
565 test_list = tests_xpassed
566 msg = 'XPASSED'
567 msg_log = log.status_xpass
568 else:
569 failure_cleanup = True
570 test_list = tests_failed
571 msg = 'FAILED:\n' + str(report.longrepr)
572 msg_log = log.status_fail
Stephen Warren10e50632016-01-15 11:15:24 -0700573 break
574 if report.outcome == 'skipped':
Stephen Warren25b05242016-01-27 23:57:51 -0700575 if hasattr(report, 'wasxfail'):
576 failure_cleanup = True
577 test_list = tests_xfailed
578 msg = 'XFAILED:\n' + str(report.longrepr)
579 msg_log = log.status_xfail
580 break
581 test_list = tests_skipped
582 msg = 'SKIPPED:\n' + str(report.longrepr)
583 msg_log = log.status_skipped
Stephen Warren10e50632016-01-15 11:15:24 -0700584
Stephen Warren25b05242016-01-27 23:57:51 -0700585 if failure_cleanup:
Stephen Warren97a54662016-01-22 12:30:09 -0700586 console.drain_console()
Stephen Warren25b05242016-01-27 23:57:51 -0700587
Stephen Warrenaaf4e912016-02-10 13:47:37 -0700588 test_list.append(item.name)
Stephen Warren10e50632016-01-15 11:15:24 -0700589 tests_not_run.remove(item.name)
590
591 try:
Stephen Warren25b05242016-01-27 23:57:51 -0700592 msg_log(msg)
Stephen Warren10e50632016-01-15 11:15:24 -0700593 except:
594 # If something went wrong with logging, it's better to let the test
595 # process continue, which may report other exceptions that triggered
596 # the logging issue (e.g. console.log wasn't created). Hence, just
597 # squash the exception. If the test setup failed due to e.g. syntax
598 # error somewhere else, this won't be seen. However, once that issue
599 # is fixed, if this exception still exists, it will then be logged as
600 # part of the test's stdout.
601 import traceback
Paul Burton00f2d202017-09-14 14:34:43 -0700602 print('Exception occurred while logging runtest status:')
Stephen Warren10e50632016-01-15 11:15:24 -0700603 traceback.print_exc()
604 # FIXME: Can we force a test failure here?
605
606 log.end_section(item.name)
607
Stephen Warren25b05242016-01-27 23:57:51 -0700608 if failure_cleanup:
Stephen Warren10e50632016-01-15 11:15:24 -0700609 console.cleanup_spawn()
610
611 return reports