Skip to content

Commit

Permalink
Add collector path for cond. comp. tests (#4159)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Somsikov authored Feb 4, 2021
1 parent db84033 commit 9b5b2bb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
12 changes: 12 additions & 0 deletions tests/conditional_compilation/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ def pytest_addoption(parser):
type=Path,
help="Path to the benchmark_app tool",
)
parser.addoption(
"--collector_dir",
required=True,
type=Path,
help="Path to a directory with a collector binary",
)
parser.addoption(
"-A",
"--artifacts",
Expand Down Expand Up @@ -89,6 +95,12 @@ def benchmark_app(request):
return request.config.getoption("benchmark_app")


@pytest.fixture(scope="session")
def collector_dir(request):
"""Fixture function for command-line option."""
return request.config.getoption("collector_dir")


@pytest.fixture(scope="session")
def artifacts(request):
"""Fixture function for command-line option."""
Expand Down
3 changes: 2 additions & 1 deletion tests/conditional_compilation/test_collect.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from proc_utils import cmd_exec # pylint: disable=import-error


def test_cc_collect(model, sea_runtool, benchmark_app, artifacts):
def test_cc_collect(model, sea_runtool, benchmark_app, collector_dir, artifacts):
""" Test conditional compilation statistics collection
"""
out = artifacts / model.parent / model.stem
Expand All @@ -26,6 +26,7 @@ def test_cc_collect(model, sea_runtool, benchmark_app, artifacts):
str(sea_runtool),
f"-o={out}",
"-f=stat",
f"--bindir={collector_dir}",
"!",
str(benchmark_app),
"-d=CPU",
Expand Down

0 comments on commit 9b5b2bb

Please sign in to comment.