blob: bffee6b8a3a288f7574dc16def1152e2c9e048b4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0
Stephen Warrend2015062016-01-15 11:15:24 -07002# Copyright (c) 2015 Stephen Warren
3# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
Stephen Warrend2015062016-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 Rinifd31fc12019-10-24 11:59:21 -040016import configparser
Stephen Warrend2015062016-01-15 11:15:24 -070017import errno
Tom Rinifd31fc12019-10-24 11:59:21 -040018import io
Stephen Warrend2015062016-01-15 11:15:24 -070019import os
20import os.path
Stephen Warrend2015062016-01-15 11:15:24 -070021import pytest
Stephen Warren1cd85f52016-02-08 14:44:16 -070022import re
Tom Rinifd31fc12019-10-24 11:59:21 -040023from _pytest.runner import runtestprotocol
Stephen Warrend2015062016-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 Warrene8debf32016-01-26 13:41:30 -070031 """Create a directory path.
Stephen Warrend2015062016-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 Warrene8debf32016-01-26 13:41:30 -070041 """
Stephen Warrend2015062016-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 Warrene8debf32016-01-26 13:41:30 -070052 """pytest hook: Add custom command-line options to the cmdline parser.
Stephen Warrend2015062016-01-15 11:15:24 -070053
54 Args:
55 parser: The pytest command-line parser.
56
57 Returns:
58 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -070059 """
Stephen Warrend2015062016-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 Warren89ab8412016-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 Warrend2015062016-01-15 11:15:24 -070076
77def pytest_configure(config):
Stephen Warrene8debf32016-01-26 13:41:30 -070078 """pytest hook: Perform custom initialization at startup time.
Stephen Warrend2015062016-01-15 11:15:24 -070079
80 Args:
81 config: The pytest configuration.
82
83 Returns:
84 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -070085 """
Stephen Warrend2015062016-01-15 11:15:24 -070086
87 global log
88 global console
89 global ubconfig
90
91 test_py_dir = os.path.dirname(os.path.abspath(__file__))
92 source_dir = os.path.dirname(os.path.dirname(test_py_dir))
93
94 board_type = config.getoption('board_type')
95 board_type_filename = board_type.replace('-', '_')
96
97 board_identity = config.getoption('board_identity')
98 board_identity_filename = board_identity.replace('-', '_')
99
100 build_dir = config.getoption('build_dir')
101 if not build_dir:
102 build_dir = source_dir + '/build-' + board_type
103 mkdir_p(build_dir)
104
105 result_dir = config.getoption('result_dir')
106 if not result_dir:
107 result_dir = build_dir
108 mkdir_p(result_dir)
109
110 persistent_data_dir = config.getoption('persistent_data_dir')
111 if not persistent_data_dir:
112 persistent_data_dir = build_dir + '/persistent-data'
113 mkdir_p(persistent_data_dir)
114
Stephen Warren89ab8412016-02-04 16:11:50 -0700115 gdbserver = config.getoption('gdbserver')
Igor Opaniuk7374b152019-02-12 16:18:14 +0200116 if gdbserver and not board_type.startswith('sandbox'):
117 raise Exception('--gdbserver only supported with sandbox targets')
Stephen Warren89ab8412016-02-04 16:11:50 -0700118
Stephen Warrend2015062016-01-15 11:15:24 -0700119 import multiplexed_log
120 log = multiplexed_log.Logfile(result_dir + '/test-log.html')
121
122 if config.getoption('build'):
123 if build_dir != source_dir:
124 o_opt = 'O=%s' % build_dir
125 else:
126 o_opt = ''
127 cmds = (
128 ['make', o_opt, '-s', board_type + '_defconfig'],
129 ['make', o_opt, '-s', '-j8'],
130 )
Stephen Warren83357fd2016-02-03 16:46:34 -0700131 with log.section('make'):
132 runner = log.get_runner('make', sys.stdout)
133 for cmd in cmds:
134 runner.run(cmd, cwd=source_dir)
135 runner.close()
136 log.status_pass('OK')
Stephen Warrend2015062016-01-15 11:15:24 -0700137
138 class ArbitraryAttributeContainer(object):
139 pass
140
141 ubconfig = ArbitraryAttributeContainer()
142 ubconfig.brd = dict()
143 ubconfig.env = dict()
144
145 modules = [
146 (ubconfig.brd, 'u_boot_board_' + board_type_filename),
147 (ubconfig.env, 'u_boot_boardenv_' + board_type_filename),
148 (ubconfig.env, 'u_boot_boardenv_' + board_type_filename + '_' +
149 board_identity_filename),
150 ]
151 for (dict_to_fill, module_name) in modules:
152 try:
153 module = __import__(module_name)
154 except ImportError:
155 continue
156 dict_to_fill.update(module.__dict__)
157
158 ubconfig.buildconfig = dict()
159
160 for conf_file in ('.config', 'include/autoconf.mk'):
161 dot_config = build_dir + '/' + conf_file
162 if not os.path.exists(dot_config):
163 raise Exception(conf_file + ' does not exist; ' +
164 'try passing --build option?')
165
166 with open(dot_config, 'rt') as f:
167 ini_str = '[root]\n' + f.read()
Tom Rinife1193e2019-10-24 11:59:20 -0400168 ini_sio = io.StringIO(ini_str)
Paul Burton052ca372017-09-14 14:34:45 -0700169 parser = configparser.RawConfigParser()
Tom Rinifd31fc12019-10-24 11:59:21 -0400170 parser.read_file(ini_sio)
Stephen Warrend2015062016-01-15 11:15:24 -0700171 ubconfig.buildconfig.update(parser.items('root'))
172
173 ubconfig.test_py_dir = test_py_dir
174 ubconfig.source_dir = source_dir
175 ubconfig.build_dir = build_dir
176 ubconfig.result_dir = result_dir
177 ubconfig.persistent_data_dir = persistent_data_dir
178 ubconfig.board_type = board_type
179 ubconfig.board_identity = board_identity
Stephen Warren89ab8412016-02-04 16:11:50 -0700180 ubconfig.gdbserver = gdbserver
Simon Glass06719602016-07-03 09:40:36 -0600181 ubconfig.dtb = build_dir + '/arch/sandbox/dts/test.dtb'
Stephen Warrend2015062016-01-15 11:15:24 -0700182
183 env_vars = (
184 'board_type',
185 'board_identity',
186 'source_dir',
187 'test_py_dir',
188 'build_dir',
189 'result_dir',
190 'persistent_data_dir',
191 )
192 for v in env_vars:
193 os.environ['U_BOOT_' + v.upper()] = getattr(ubconfig, v)
194
Simon Glass2fedbaa2016-07-04 11:58:37 -0600195 if board_type.startswith('sandbox'):
Stephen Warrend2015062016-01-15 11:15:24 -0700196 import u_boot_console_sandbox
197 console = u_boot_console_sandbox.ConsoleSandbox(log, ubconfig)
198 else:
199 import u_boot_console_exec_attach
200 console = u_boot_console_exec_attach.ConsoleExecAttach(log, ubconfig)
201
Simon Glass1f0fe882017-11-25 11:57:32 -0700202re_ut_test_list = re.compile(r'_u_boot_list_2_(.*)_test_2_\1_test_(.*)\s*$')
Stephen Warren1cd85f52016-02-08 14:44:16 -0700203def generate_ut_subtest(metafunc, fixture_name):
204 """Provide parametrization for a ut_subtest fixture.
205
206 Determines the set of unit tests built into a U-Boot binary by parsing the
207 list of symbols generated by the build process. Provides this information
208 to test functions by parameterizing their ut_subtest fixture parameter.
209
210 Args:
211 metafunc: The pytest test function.
212 fixture_name: The fixture name to test.
213
214 Returns:
215 Nothing.
216 """
217
218 fn = console.config.build_dir + '/u-boot.sym'
219 try:
220 with open(fn, 'rt') as f:
221 lines = f.readlines()
222 except:
223 lines = []
224 lines.sort()
225
226 vals = []
227 for l in lines:
228 m = re_ut_test_list.search(l)
229 if not m:
230 continue
231 vals.append(m.group(1) + ' ' + m.group(2))
232
233 ids = ['ut_' + s.replace(' ', '_') for s in vals]
234 metafunc.parametrize(fixture_name, vals, ids=ids)
235
236def generate_config(metafunc, fixture_name):
237 """Provide parametrization for {env,brd}__ fixtures.
Stephen Warrend2015062016-01-15 11:15:24 -0700238
239 If a test function takes parameter(s) (fixture names) of the form brd__xxx
240 or env__xxx, the brd and env configuration dictionaries are consulted to
241 find the list of values to use for those parameters, and the test is
242 parametrized so that it runs once for each combination of values.
243
244 Args:
245 metafunc: The pytest test function.
Stephen Warren1cd85f52016-02-08 14:44:16 -0700246 fixture_name: The fixture name to test.
Stephen Warrend2015062016-01-15 11:15:24 -0700247
248 Returns:
249 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -0700250 """
Stephen Warrend2015062016-01-15 11:15:24 -0700251
252 subconfigs = {
253 'brd': console.config.brd,
254 'env': console.config.env,
255 }
Stephen Warren1cd85f52016-02-08 14:44:16 -0700256 parts = fixture_name.split('__')
257 if len(parts) < 2:
258 return
259 if parts[0] not in subconfigs:
260 return
261 subconfig = subconfigs[parts[0]]
262 vals = []
263 val = subconfig.get(fixture_name, [])
264 # If that exact name is a key in the data source:
265 if val:
266 # ... use the dict value as a single parameter value.
267 vals = (val, )
268 else:
269 # ... otherwise, see if there's a key that contains a list of
270 # values to use instead.
271 vals = subconfig.get(fixture_name+ 's', [])
272 def fixture_id(index, val):
273 try:
274 return val['fixture_id']
275 except:
276 return fixture_name + str(index)
277 ids = [fixture_id(index, val) for (index, val) in enumerate(vals)]
278 metafunc.parametrize(fixture_name, vals, ids=ids)
279
280def pytest_generate_tests(metafunc):
281 """pytest hook: parameterize test functions based on custom rules.
282
283 Check each test function parameter (fixture name) to see if it is one of
284 our custom names, and if so, provide the correct parametrization for that
285 parameter.
286
287 Args:
288 metafunc: The pytest test function.
289
290 Returns:
291 Nothing.
292 """
293
Stephen Warrend2015062016-01-15 11:15:24 -0700294 for fn in metafunc.fixturenames:
Stephen Warren1cd85f52016-02-08 14:44:16 -0700295 if fn == 'ut_subtest':
296 generate_ut_subtest(metafunc, fn)
Stephen Warrend2015062016-01-15 11:15:24 -0700297 continue
Stephen Warren1cd85f52016-02-08 14:44:16 -0700298 generate_config(metafunc, fn)
Stephen Warrend2015062016-01-15 11:15:24 -0700299
Stefan Brünsd8c1e032016-11-05 17:45:32 +0100300@pytest.fixture(scope='session')
301def u_boot_log(request):
302 """Generate the value of a test's log fixture.
303
304 Args:
305 request: The pytest request.
306
307 Returns:
308 The fixture value.
309 """
310
311 return console.log
312
313@pytest.fixture(scope='session')
314def u_boot_config(request):
315 """Generate the value of a test's u_boot_config fixture.
316
317 Args:
318 request: The pytest request.
319
320 Returns:
321 The fixture value.
322 """
323
324 return console.config
325
Stephen Warren636f38d2016-01-22 12:30:08 -0700326@pytest.fixture(scope='function')
Stephen Warrend2015062016-01-15 11:15:24 -0700327def u_boot_console(request):
Stephen Warrene8debf32016-01-26 13:41:30 -0700328 """Generate the value of a test's u_boot_console fixture.
Stephen Warrend2015062016-01-15 11:15:24 -0700329
330 Args:
331 request: The pytest request.
332
333 Returns:
334 The fixture value.
Stephen Warrene8debf32016-01-26 13:41:30 -0700335 """
Stephen Warrend2015062016-01-15 11:15:24 -0700336
Stephen Warren636f38d2016-01-22 12:30:08 -0700337 console.ensure_spawned()
Stephen Warrend2015062016-01-15 11:15:24 -0700338 return console
339
Stephen Warren83357fd2016-02-03 16:46:34 -0700340anchors = {}
Stephen Warren13260222016-02-10 13:47:37 -0700341tests_not_run = []
342tests_failed = []
343tests_xpassed = []
344tests_xfailed = []
345tests_skipped = []
Stephen Warren32090e52018-02-20 12:51:55 -0700346tests_warning = []
Stephen Warren13260222016-02-10 13:47:37 -0700347tests_passed = []
Stephen Warrend2015062016-01-15 11:15:24 -0700348
349def pytest_itemcollected(item):
Stephen Warrene8debf32016-01-26 13:41:30 -0700350 """pytest hook: Called once for each test found during collection.
Stephen Warrend2015062016-01-15 11:15:24 -0700351
352 This enables our custom result analysis code to see the list of all tests
353 that should eventually be run.
354
355 Args:
356 item: The item that was collected.
357
358 Returns:
359 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -0700360 """
Stephen Warrend2015062016-01-15 11:15:24 -0700361
Stephen Warren13260222016-02-10 13:47:37 -0700362 tests_not_run.append(item.name)
Stephen Warrend2015062016-01-15 11:15:24 -0700363
364def cleanup():
Stephen Warrene8debf32016-01-26 13:41:30 -0700365 """Clean up all global state.
Stephen Warrend2015062016-01-15 11:15:24 -0700366
367 Executed (via atexit) once the entire test process is complete. This
368 includes logging the status of all tests, and the identity of any failed
369 or skipped tests.
370
371 Args:
372 None.
373
374 Returns:
375 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -0700376 """
Stephen Warrend2015062016-01-15 11:15:24 -0700377
378 if console:
379 console.close()
380 if log:
Stephen Warren83357fd2016-02-03 16:46:34 -0700381 with log.section('Status Report', 'status_report'):
382 log.status_pass('%d passed' % len(tests_passed))
Stephen Warren32090e52018-02-20 12:51:55 -0700383 if tests_warning:
384 log.status_warning('%d passed with warning' % len(tests_warning))
385 for test in tests_warning:
386 anchor = anchors.get(test, None)
387 log.status_warning('... ' + test, anchor)
Stephen Warren83357fd2016-02-03 16:46:34 -0700388 if tests_skipped:
389 log.status_skipped('%d skipped' % len(tests_skipped))
390 for test in tests_skipped:
391 anchor = anchors.get(test, None)
392 log.status_skipped('... ' + test, anchor)
393 if tests_xpassed:
394 log.status_xpass('%d xpass' % len(tests_xpassed))
395 for test in tests_xpassed:
396 anchor = anchors.get(test, None)
397 log.status_xpass('... ' + test, anchor)
398 if tests_xfailed:
399 log.status_xfail('%d xfail' % len(tests_xfailed))
400 for test in tests_xfailed:
401 anchor = anchors.get(test, None)
402 log.status_xfail('... ' + test, anchor)
403 if tests_failed:
404 log.status_fail('%d failed' % len(tests_failed))
405 for test in tests_failed:
406 anchor = anchors.get(test, None)
407 log.status_fail('... ' + test, anchor)
408 if tests_not_run:
409 log.status_fail('%d not run' % len(tests_not_run))
410 for test in tests_not_run:
411 anchor = anchors.get(test, None)
412 log.status_fail('... ' + test, anchor)
Stephen Warrend2015062016-01-15 11:15:24 -0700413 log.close()
414atexit.register(cleanup)
415
416def setup_boardspec(item):
Stephen Warrene8debf32016-01-26 13:41:30 -0700417 """Process any 'boardspec' marker for a test.
Stephen Warrend2015062016-01-15 11:15:24 -0700418
419 Such a marker lists the set of board types that a test does/doesn't
420 support. If tests are being executed on an unsupported board, the test is
421 marked to be skipped.
422
423 Args:
424 item: The pytest test item.
425
426 Returns:
427 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -0700428 """
Stephen Warrend2015062016-01-15 11:15:24 -0700429
Stephen Warrend2015062016-01-15 11:15:24 -0700430 required_boards = []
Marek Vasut3c941e02019-10-24 11:59:19 -0400431 for boards in item.iter_markers('boardspec'):
432 board = boards.args[0]
Stephen Warrend2015062016-01-15 11:15:24 -0700433 if board.startswith('!'):
434 if ubconfig.board_type == board[1:]:
Stephen Warrend5170442017-09-18 11:11:48 -0600435 pytest.skip('board "%s" not supported' % ubconfig.board_type)
Stephen Warrend2015062016-01-15 11:15:24 -0700436 return
437 else:
438 required_boards.append(board)
439 if required_boards and ubconfig.board_type not in required_boards:
Stephen Warrend5170442017-09-18 11:11:48 -0600440 pytest.skip('board "%s" not supported' % ubconfig.board_type)
Stephen Warrend2015062016-01-15 11:15:24 -0700441
442def setup_buildconfigspec(item):
Stephen Warrene8debf32016-01-26 13:41:30 -0700443 """Process any 'buildconfigspec' marker for a test.
Stephen Warrend2015062016-01-15 11:15:24 -0700444
445 Such a marker lists some U-Boot configuration feature that the test
446 requires. If tests are being executed on an U-Boot build that doesn't
447 have the required feature, the test is marked to be skipped.
448
449 Args:
450 item: The pytest test item.
451
452 Returns:
453 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -0700454 """
Stephen Warrend2015062016-01-15 11:15:24 -0700455
Marek Vasut3c941e02019-10-24 11:59:19 -0400456 for options in item.iter_markers('buildconfigspec'):
457 option = options.args[0]
458 if not ubconfig.buildconfig.get('config_' + option.lower(), None):
459 pytest.skip('.config feature "%s" not enabled' % option.lower())
460 for option in item.iter_markers('notbuildconfigspec'):
461 option = options.args[0]
462 if ubconfig.buildconfig.get('config_' + option.lower(), None):
463 pytest.skip('.config feature "%s" enabled' % option.lower())
Stephen Warrend2015062016-01-15 11:15:24 -0700464
Stephen Warren2d26bf62017-09-18 11:11:49 -0600465def tool_is_in_path(tool):
466 for path in os.environ["PATH"].split(os.pathsep):
467 fn = os.path.join(path, tool)
468 if os.path.isfile(fn) and os.access(fn, os.X_OK):
469 return True
470 return False
471
472def setup_requiredtool(item):
473 """Process any 'requiredtool' marker for a test.
474
475 Such a marker lists some external tool (binary, executable, application)
476 that the test requires. If tests are being executed on a system that
477 doesn't have the required tool, the test is marked to be skipped.
478
479 Args:
480 item: The pytest test item.
481
482 Returns:
483 Nothing.
484 """
485
Marek Vasut3c941e02019-10-24 11:59:19 -0400486 for tools in item.iter_markers('requiredtool'):
487 tool = tools.args[0]
Stephen Warren2d26bf62017-09-18 11:11:49 -0600488 if not tool_is_in_path(tool):
489 pytest.skip('tool "%s" not in $PATH' % tool)
490
Stephen Warrenb0a928a2016-10-17 17:25:52 -0600491def start_test_section(item):
492 anchors[item.name] = log.start_section(item.name)
493
Stephen Warrend2015062016-01-15 11:15:24 -0700494def pytest_runtest_setup(item):
Stephen Warrene8debf32016-01-26 13:41:30 -0700495 """pytest hook: Configure (set up) a test item.
Stephen Warrend2015062016-01-15 11:15:24 -0700496
497 Called once for each test to perform any custom configuration. This hook
498 is used to skip the test if certain conditions apply.
499
500 Args:
501 item: The pytest test item.
502
503 Returns:
504 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -0700505 """
Stephen Warrend2015062016-01-15 11:15:24 -0700506
Stephen Warrenb0a928a2016-10-17 17:25:52 -0600507 start_test_section(item)
Stephen Warrend2015062016-01-15 11:15:24 -0700508 setup_boardspec(item)
509 setup_buildconfigspec(item)
Stephen Warren2d26bf62017-09-18 11:11:49 -0600510 setup_requiredtool(item)
Stephen Warrend2015062016-01-15 11:15:24 -0700511
512def pytest_runtest_protocol(item, nextitem):
Stephen Warrene8debf32016-01-26 13:41:30 -0700513 """pytest hook: Called to execute a test.
Stephen Warrend2015062016-01-15 11:15:24 -0700514
515 This hook wraps the standard pytest runtestprotocol() function in order
516 to acquire visibility into, and record, each test function's result.
517
518 Args:
519 item: The pytest test item to execute.
520 nextitem: The pytest test item that will be executed after this one.
521
522 Returns:
523 A list of pytest reports (test result data).
Stephen Warrene8debf32016-01-26 13:41:30 -0700524 """
Stephen Warrend2015062016-01-15 11:15:24 -0700525
Stephen Warren32090e52018-02-20 12:51:55 -0700526 log.get_and_reset_warning()
Stephen Warrend2015062016-01-15 11:15:24 -0700527 reports = runtestprotocol(item, nextitem=nextitem)
Stephen Warren32090e52018-02-20 12:51:55 -0700528 was_warning = log.get_and_reset_warning()
Stephen Warren78b39cc2016-01-27 23:57:51 -0700529
Stephen Warrenb0a928a2016-10-17 17:25:52 -0600530 # In pytest 3, runtestprotocol() may not call pytest_runtest_setup() if
531 # the test is skipped. That call is required to create the test's section
532 # in the log file. The call to log.end_section() requires that the log
533 # contain a section for this test. Create a section for the test if it
534 # doesn't already exist.
535 if not item.name in anchors:
536 start_test_section(item)
537
Stephen Warren78b39cc2016-01-27 23:57:51 -0700538 failure_cleanup = False
Stephen Warren32090e52018-02-20 12:51:55 -0700539 if not was_warning:
540 test_list = tests_passed
541 msg = 'OK'
542 msg_log = log.status_pass
543 else:
544 test_list = tests_warning
545 msg = 'OK (with warning)'
546 msg_log = log.status_warning
Stephen Warrend2015062016-01-15 11:15:24 -0700547 for report in reports:
548 if report.outcome == 'failed':
Stephen Warren78b39cc2016-01-27 23:57:51 -0700549 if hasattr(report, 'wasxfail'):
550 test_list = tests_xpassed
551 msg = 'XPASSED'
552 msg_log = log.status_xpass
553 else:
554 failure_cleanup = True
555 test_list = tests_failed
556 msg = 'FAILED:\n' + str(report.longrepr)
557 msg_log = log.status_fail
Stephen Warrend2015062016-01-15 11:15:24 -0700558 break
559 if report.outcome == 'skipped':
Stephen Warren78b39cc2016-01-27 23:57:51 -0700560 if hasattr(report, 'wasxfail'):
561 failure_cleanup = True
562 test_list = tests_xfailed
563 msg = 'XFAILED:\n' + str(report.longrepr)
564 msg_log = log.status_xfail
565 break
566 test_list = tests_skipped
567 msg = 'SKIPPED:\n' + str(report.longrepr)
568 msg_log = log.status_skipped
Stephen Warrend2015062016-01-15 11:15:24 -0700569
Stephen Warren78b39cc2016-01-27 23:57:51 -0700570 if failure_cleanup:
Stephen Warrenc10eb9d2016-01-22 12:30:09 -0700571 console.drain_console()
Stephen Warren78b39cc2016-01-27 23:57:51 -0700572
Stephen Warren13260222016-02-10 13:47:37 -0700573 test_list.append(item.name)
Stephen Warrend2015062016-01-15 11:15:24 -0700574 tests_not_run.remove(item.name)
575
576 try:
Stephen Warren78b39cc2016-01-27 23:57:51 -0700577 msg_log(msg)
Stephen Warrend2015062016-01-15 11:15:24 -0700578 except:
579 # If something went wrong with logging, it's better to let the test
580 # process continue, which may report other exceptions that triggered
581 # the logging issue (e.g. console.log wasn't created). Hence, just
582 # squash the exception. If the test setup failed due to e.g. syntax
583 # error somewhere else, this won't be seen. However, once that issue
584 # is fixed, if this exception still exists, it will then be logged as
585 # part of the test's stdout.
586 import traceback
Paul Burtondffd56d2017-09-14 14:34:43 -0700587 print('Exception occurred while logging runtest status:')
Stephen Warrend2015062016-01-15 11:15:24 -0700588 traceback.print_exc()
589 # FIXME: Can we force a test failure here?
590
591 log.end_section(item.name)
592
Stephen Warren78b39cc2016-01-27 23:57:51 -0700593 if failure_cleanup:
Stephen Warrend2015062016-01-15 11:15:24 -0700594 console.cleanup_spawn()
595
596 return reports