|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# Copyright 2013-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.
|
|
|
|
|
|
|
|
'''Runs the basic test suite through a cross compiler.
|
|
|
|
Not part of the main test suite because of two reasons:
|
|
|
|
|
|
|
|
1) setup of the cross build is platform specific
|
|
|
|
2) it can be slow (e.g. when invoking test apps via wine)
|
|
|
|
|
|
|
|
Eventually migrate to something fancier.'''
|
|
|
|
|
|
|
|
import sys, os
|
|
|
|
|
|
|
|
from run_project_tests import gather_tests, run_tests, StopException, setup_commands
|
|
|
|
from run_project_tests import failing_logs
|
|
|
|
|
|
|
|
def runtests(cross_file):
|
|
|
|
commontests = [('common', gather_tests('test cases/common'), False)]
|
|
|
|
try:
|
|
|
|
(passing_tests, failing_tests, skipped_tests) = run_tests(commontests, 'meson-cross-test-run', ['--cross', cross_file])
|
|
|
|
except StopException:
|
|
|
|
pass
|
|
|
|
print('\nTotal passed cross tests:', passing_tests)
|
|
|
|
print('Total failed cross tests:', failing_tests)
|
|
|
|
print('Total skipped cross tests:', skipped_tests)
|
|
|
|
if failing_tests > 0 and ('TRAVIS' in os.environ or 'APPVEYOR' in os.environ):
|
|
|
|
print('\nMesonlogs of failing tests\n')
|
|
|
|
for l in failing_logs:
|
|
|
|
print(l, '\n')
|
|
|
|
sys.exit(failing_tests)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
setup_commands('ninja')
|
|
|
|
cross_file = sys.argv[1]
|
|
|
|
runtests(cross_file)
|