Source code for benchbuild.projects.gentoo.eix

"""
eix experiment within gentoo chroot
"""
from plumbum import local

from benchbuild.projects.gentoo.gentoo import GentooGroup
from benchbuild.utils import wrapping


[docs]class Eix(GentooGroup): """Represents the package eix from the portage tree.""" NAME = 'eix' DOMAIN = 'app-portage'
[docs] def run_tests(self, runner): """Runs runtime tests for eix""" eix = wrapping.wrap(local.path('/usr/bin/eix'), self) runner(eix["clang"])