blob: 9d91fe405db8dd3b2c5d71423957a7f67b858772 [file] [log] [blame]
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
CROS_WORKON_COMMIT="7e99698a6e6a8b67c76c8071179bd9bac99b24c1"
CROS_WORKON_TREE="f8afeb49042c16e06e05efbea4c2824876241bd4"
CROS_WORKON_PROJECT="chromiumos/chromite"
CROS_WORKON_LOCALNAME="../../chromite"
CROS_WORKON_OUTOFTREE_BUILD=1
inherit cros-workon python
DESCRIPTION="Wrapper for running chromite unit tests"
HOMEPAGE="http://www.chromium.org/"
LICENSE="BSD-Google"
SLOT="0"
KEYWORDS="*"
IUSE="cros_host"
src_install() {
use cros_host && return
insinto "$(python_get_sitedir)/chromite"
doins -r "${S}"/*
# TODO (crbug.com/346859) Convert to using distutils and a setup.py
# to specify which files should be installed.
cd "${D}/$(python_get_sitedir)/chromite"
find '(' -name '*.pyc' -o -name '*unittest.py' ')' -delete
rm -rf third_party/pyelftools/test
}
src_test() {
# Run the chromite unit tests, resetting the environment to the standard
# one using a sudo invocation. Currently the tests assume they run from a
# repo checkout, so they need to be run from the real source dir.
# TODO(davidjames): Fix that, and run the tests from ${S} instead.
cd /mnt/host/source/chromite/cbuildbot && sudo -u "${PORTAGE_USERNAME}" \
PATH="${CROS_WORKON_SRCROOT}/../depot_tools:${PATH}" ./run_tests || die
}