From db631b2afab27e2ccd1d9add551eec37fca85115 Mon Sep 17 00:00:00 2001 From: JAYANTH-IITM <157010687+JAYANTH-IITM@users.noreply.github.com> Date: Thu, 17 Oct 2024 20:33:27 +0530 Subject: [PATCH] changes to point correct env_dir (#529) Co-authored-by: saravanakumarsastra Co-authored-by: Umer Shahid --- riscv-ctg/riscv_ctg/ctg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscv-ctg/riscv_ctg/ctg.py b/riscv-ctg/riscv_ctg/ctg.py index 1d1dced19..caac7a959 100644 --- a/riscv-ctg/riscv_ctg/ctg.py +++ b/riscv-ctg/riscv_ctg/ctg.py @@ -106,7 +106,7 @@ def ctg(verbose, out, random ,xlen_arg,flen_arg, cgf_file,num_procs,base_isa, ma logger.info('Copyright (c) 2020, InCore Semiconductors Pvt. Ltd.') logger.info('All Rights Reserved.') logger.info("Copying env folder to Output directory.") - env_dir = os.path.join(out,"env") + env_dir = os.path.expanduser("~/riscv-arch-test/riscv-test-suite/env") if not os.path.exists(env_dir): shutil.copytree(const.env,env_dir) xlen = int(xlen_arg)