From fb7608ecdd9a1f83cc45ebd696b2c4587adaa625 Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Sun, 30 Jun 2024 17:16:39 +0200 Subject: [PATCH] removed hardcoded path --- test/test_starbench.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_starbench.py b/test/test_starbench.py index 718850f..bca5e34 100644 --- a/test/test_starbench.py +++ b/test/test_starbench.py @@ -14,7 +14,7 @@ class StarbenchTestCase(unittest.TestCase): def test_mamul1_benchmark(self): logging.info('test_mamul1_benchmark') - source_code_provider = ExistingDir(Path('/home/graffy/work/starbench/starbench.git/test/mamul1')) + source_code_provider = ExistingDir(Path('test/mamul1').absolute()) tmp_dir = Path('tmp').absolute() benchmark_command = ['./mamul1', '3000', '10'] starbench_cmake_app(source_code_provider=source_code_provider, tmp_dir=tmp_dir, num_cores=2, benchmark_command=benchmark_command)