Skip to content

Commit

Permalink
Temporarily fix tester driver CWD issue
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Jared Barocsi committed Aug 8, 2019
1 parent 57febef commit 9ffea16
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/scala/testing/CPUTesterDriver.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 9ffea16

Please sign in to comment.