39 lines
1.4 KiB
Python
39 lines
1.4 KiB
Python
#!/usr/bin/python3
|
|
# Copyright (C) 2020-2021 Jelmer Vernooij <jelmer@jelmer.uk>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
from functools import partial
|
|
|
|
from .buildsystem import NoBuildToolsFound
|
|
from .fix_build import iterate_with_build_fixers
|
|
from .logs import NoLogManager
|
|
|
|
|
|
def run_test(session, buildsystems, resolver, fixers, log_manager=None):
|
|
# Some things want to write to the user's home directory,
|
|
# e.g. pip caches in ~/.cache
|
|
session.create_home()
|
|
|
|
if log_manager is None:
|
|
log_manager = NoLogManager()
|
|
|
|
for buildsystem in buildsystems:
|
|
iterate_with_build_fixers(
|
|
fixers, log_manager.wrap(
|
|
partial(buildsystem.test, session, resolver)))
|
|
return
|
|
|
|
raise NoBuildToolsFound()
|