]> git.sur5r.net Git - u-boot/blob - test/py/test.py
Makefile: drop mention of *.cfgtmp
[u-boot] / test / py / test.py
1 #!/usr/bin/env python2
2 # SPDX-License-Identifier: GPL-2.0
3
4 # Copyright (c) 2015 Stephen Warren
5 # Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
6
7 # Wrapper script to invoke pytest with the directory name that contains the
8 # U-Boot tests.
9
10 import os
11 import os.path
12 import sys
13
14 # Get rid of argv[0]
15 sys.argv.pop(0)
16
17 # argv; py.test test_directory_name user-supplied-arguments
18 args = ['py.test', os.path.dirname(__file__) + '/tests']
19 args.extend(sys.argv)
20
21 try:
22     os.execvp('py.test', args)
23 except:
24     # Log full details of any exception for detailed analysis
25     import traceback
26     traceback.print_exc()
27     # Hint to the user that they likely simply haven't installed the required
28     # dependencies.
29     print >>sys.stderr, '''
30 exec(py.test) failed; perhaps you are missing some dependencies?
31 See test/py/README.md for the list.'''
32     sys.exit(1)