From d45d53c3acb9696a9e78d0d4ad46402a6e6d8906 Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Wed, 1 Jun 2022 12:05:28 +0200 Subject: [PATCH] fixed bugs discovered after running from scratch --- .ipr/starbench.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ipr/starbench.py b/.ipr/starbench.py index a04607a..8e75dcf 100755 --- a/.ipr/starbench.py +++ b/.ipr/starbench.py @@ -190,6 +190,7 @@ def measure_hibridon_perf(hibridon_version: str, tmp_dir: Path, num_cores: int, hibridon_git_url = 'https://%s:%s@github.com/hibridon/hibridon' % (github_username, github_personal_access_token) subprocess.run(['git', 'clone', '%s' % (hibridon_git_url)], cwd=tmp_dir) src_dir = tmp_dir / 'hibridon' + src_dir.mkdir(exist_ok=True) subprocess.run(['git', 'checkout', '%s' % (hibridon_version)], cwd=src_dir) assert src_dir.exists() @@ -204,7 +205,7 @@ def measure_hibridon_perf(hibridon_version: str, tmp_dir: Path, num_cores: int, max_num_cores=num_cores, stop_condition=StopAfterSingleRun(), run_command_cwd=Path('/tmp'), - stdout_filepath=build_dir / 'create_build_dir_stdout.txt') + stdout_filepath=None) create_build_dir_duration = create_build_dir.run() # noqa: F841 # build_dir.mkdir(exist_ok=True)