From 9ffea165aa8ae355e99b7d5b51d7a9de9d473233 Mon Sep 17 00:00:00 2001 From: Jared Barocsi Date: Thu, 8 Aug 2019 08:10:42 -0700 Subject: [PATCH] Temporarily fix tester driver CWD issue This will pollute the CWD with testing files in the meantime. Be sure to not `git add .`, and instead add the files you actually changed. --- src/main/scala/testing/CPUTesterDriver.scala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/scala/testing/CPUTesterDriver.scala b/src/main/scala/testing/CPUTesterDriver.scala index 43ec9cc1..1eed2dfe 100644 --- a/src/main/scala/testing/CPUTesterDriver.scala +++ b/src/main/scala/testing/CPUTesterDriver.scala @@ -16,7 +16,9 @@ class CPUTesterDriver(cpuType: String, val optionsManager = new SimulatorOptionsManager() if (optionsManager.targetDirName == ".") { - optionsManager.setTargetDirName(s"test_run_dir/$cpuType/$binary$extraName") + // TODO: Revert this either by waiting for the chisel guys to fix the CWD bug, or moving the testing system over to + // FIRRTLMain instead of Driver + //optionsManager.setTargetDirName(s"test_run_dir/$cpuType/$binary$extraName") } val hexName = s"${optionsManager.targetDirName}/${binary}.hex"