The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
3.7 KiB

8 years ago
#!/usr/bin/env python3
# Copyright 2016 The Meson development team
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# A tool to run tests in many different ways.
import subprocess, sys, os, argparse
import pickle
from mesonbuild.scripts import meson_test, meson_benchmark
from mesonbuild import environment
8 years ago
parser = argparse.ArgumentParser()
parser.add_argument('--repeat', default=1, dest='repeat', type=int,
help='Number of times to run the tests.')
parser.add_argument('--wrapper', default='', dest='wrapper',
help='Exe wrapper (such as Valgrind) to use')
parser.add_argument('--gdb', default=False, dest='gdb', action='store_true',
help='Run test under gdb.')
parser.add_argument('--list', default=False, dest='list', action='store_true',
help='List available tests.')
parser.add_argument('tests', nargs='*')
def gdbrun(test):
child_env = os.environ.copy()
child_env.update(test.env)
# On success will exit cleanly. On failure gdb will ask user
# if they really want to exit.
exe = test.fname
args = test.cmd_args
if len(args) > 0:
argset = ['-ex', 'set args ' + ' '.join(args)]
else:
argset = []
cmd = ['gdb', '--quiet'] + argset + ['-ex', 'run', '-ex', 'quit'] + exe
# FIXME a ton of stuff. run_single_test grabs stdout & co,
# which we do not want to do when running under gdb.
p = subprocess.Popen(cmd,
env=child_env,
cwd=test.workdir,
)
p.communicate()
8 years ago
def run(args):
datafile = 'meson-private/meson_test_setup.dat'
if not os.path.isfile(datafile):
print('Test data file. Probably this means that you did not run this in the build directory.')
return 1
if os.path.isfile('build.ninja'):
subprocess.check_call([environment.detect_ninja(), 'all'])
if len(args) > 0 and args[0] == '--benchmark':
return meson_benchmark.run(args[1:] + ['meson-private/meson_benchmark_setup.dat'])
8 years ago
options = parser.parse_args(args)
if len(options.tests) == 0:
# Run basic tests.
return meson_test.run(args + ['meson-private/meson_test_setup.dat'])
8 years ago
if options.wrapper != '':
wrap = options.wrapper.split(' ')
else:
wrap = []
if options.gdb and len(options.wrapper) > 0:
print('Can not specify both a wrapper and gdb.')
return 1
tests = pickle.load(open(datafile, 'rb'))
if options.list:
for i in tests:
print(i.name)
return 0
for t in tests:
if t.name in options.tests:
for i in range(options.repeat):
print('Running: %s %d/%d' % (t.name, i+1, options.repeat))
if options.gdb:
gdbrun(t)
else:
res = meson_test.run_single_test(wrap, t)
if (res.returncode == 0 and res.should_fail) or \
(res.returncode != 0 and not res.should_fail):
print(res.stdo)
print(res.stde)
raise RuntimeError('Test failed.')
8 years ago
if __name__ == '__main__':
sys.exit(run(sys.argv[1:]))