forked from Mirror/pmbootstrap
Replace the "Add topdir to import path" boilerplate lines in each test file with a simple "import pmb_test". Use the "# noqa" comment if "pmb_test" is not used further in the test file, so flake8 does not complain about an unused module. Make the path to the testdata available as pmb_test.const.testdata, and use pmb.config.pmb_src to access the topdir in all tests. This is in preparation for new "pmbootstrap status" related tests, which will have shared test code in test/pmb_test/. Also, this makes the pmbootstrap codebase more consistent with the bpo codebase, which has a similar "import bpo_test" mechanism.
64 lines
2 KiB
Python
64 lines
2 KiB
Python
"""
|
|
Copyright 2020 Oliver Smith
|
|
|
|
This file is part of pmbootstrap.
|
|
|
|
pmbootstrap 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 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
pmbootstrap 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 pmbootstrap. If not, see <http://www.gnu.org/licenses/>.
|
|
"""
|
|
|
|
import os
|
|
import pytest
|
|
import sys
|
|
|
|
import pmb_test # noqa
|
|
import pmb.build
|
|
import pmb.chroot.distccd
|
|
import pmb.helpers.logging
|
|
|
|
|
|
@pytest.fixture
|
|
def args(tmpdir, request):
|
|
import pmb.parse
|
|
sys.argv = ["pmbootstrap", "init"]
|
|
args = pmb.parse.arguments()
|
|
args.log = args.work + "/log_testsuite.txt"
|
|
pmb.helpers.logging.init(args)
|
|
request.addfinalizer(args.logfd.close)
|
|
return args
|
|
|
|
|
|
def test_cross_compile_distcc(args):
|
|
# Delete old distccd log
|
|
pmb.chroot.distccd.stop(args)
|
|
distccd_log = args.work + "/chroot_native/home/pmos/distccd.log"
|
|
if os.path.exists(distccd_log):
|
|
pmb.helpers.run.root(args, ["rm", distccd_log])
|
|
|
|
# Force usage of distcc (no fallback, no ccache)
|
|
args.verbose = True
|
|
args.ccache = False
|
|
args.distcc_fallback = False
|
|
|
|
# Compile, print distccd and sshd logs on error
|
|
try:
|
|
pmb.build.package(args, "hello-world", arch="armhf", force=True)
|
|
except RuntimeError:
|
|
print("distccd log:")
|
|
pmb.helpers.run.user(args, ["cat", distccd_log], output="stdout",
|
|
check=False)
|
|
print("sshd log:")
|
|
sshd_log = args.work + "/chroot_native/home/pmos/.distcc-sshd/log.txt"
|
|
pmb.helpers.run.root(args, ["cat", sshd_log], output="stdout",
|
|
check=False)
|
|
raise
|