From 2a4da0762c26aa5b9f1086f9271f5c04e906dd31 Mon Sep 17 00:00:00 2001 From: Abdul Wadood Date: Tue, 20 Feb 2024 14:13:29 +0500 Subject: [PATCH] update Signed-off-by: Abdul Wadood --- ci-tests/riscof/sail_cSim/riscof_sail_cSim.py | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/ci-tests/riscof/sail_cSim/riscof_sail_cSim.py b/ci-tests/riscof/sail_cSim/riscof_sail_cSim.py index f0b860613..58186244b 100644 --- a/ci-tests/riscof/sail_cSim/riscof_sail_cSim.py +++ b/ci-tests/riscof/sail_cSim/riscof_sail_cSim.py @@ -65,20 +65,20 @@ def build(self, isa_yaml, platform_yaml): self.isa += 'f' if "D" in ispec["ISA"]: self.isa += 'd' - objdump = "riscv64-unknown-elf-objdump" - if shutil.which(objdump) is None: - logger.error(objdump+": executable not found. Please check environment setup.") - raise SystemExit(1) - compiler = "riscv64-unknown-elf-gcc" - if shutil.which(compiler) is None: - logger.error(compiler+": executable not found. Please check environment setup.") - raise SystemExit(1) - if shutil.which(self.sail_exe[self.xlen]) is None: - logger.error(self.sail_exe[self.xlen]+ ": executable not found. Please check environment setup.") - raise SystemExit(1) - if shutil.which(self.make) is None: - logger.error(self.make+": executable not found. Please check environment setup.") - raise SystemExit(1) + # objdump = "riscv64-unknown-elf-objdump" + # if shutil.which(objdump) is None: + # logger.error(objdump+": executable not found. Please check environment setup.") + # raise SystemExit(1) + # compiler = "riscv64-unknown-elf-gcc" + # if shutil.which(compiler) is None: + # logger.error(compiler+": executable not found. Please check environment setup.") + # raise SystemExit(1) + # if shutil.which(self.sail_exe[self.xlen]) is None: + # logger.error(self.sail_exe[self.xlen]+ ": executable not found. Please check environment setup.") + # raise SystemExit(1) + # if shutil.which(self.make) is None: + # logger.error(self.make+": executable not found. Please check environment setup.") + # raise SystemExit(1) def runTests(self, testList, cgf_file=None): if os.path.exists(self.work_dir+ "/Makefile." + self.name[:-1]):