Skip to content

Commit a56847a

Browse files
authored
Merge pull request freechipsproject#97 from ucb-bar/fixspellingofChiselExecutionSuccess
Fix spelling of ChiselExecutionSuccess.
2 parents eca15ef + 18b930d commit a56847a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/scala/chisel3/iotesters/Driver.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ object Driver {
120120

121121
val chiselResult: ChiselExecutionResult = chisel3.Driver.execute(optionsManager, dutGenerator)
122122
chiselResult match {
123-
case ChiselExecutionSucccess(_, emitted, _) =>
123+
case ChiselExecutionSuccess(_, emitted, _) =>
124124
optionsManager.replConfig = ReplConfig(firrtlSource = emitted)
125125
FirrtlRepl.execute(optionsManager)
126126
true

src/main/scala/chisel3/iotesters/FirrtlTerpBackend.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ private[iotesters] object setupFirrtlTerpBackend {
108108
optionsManager: TesterOptionsManager = new TesterOptionsManager): (T, Backend) = {
109109

110110
chisel3.Driver.execute(optionsManager, dutGen) match {
111-
case ChiselExecutionSucccess(Some(circuit), firrtlText, Some(firrtlExecutionResult)) =>
111+
case ChiselExecutionSuccess(Some(circuit), firrtlText, Some(firrtlExecutionResult)) =>
112112
val dut = getTopModule(circuit).asInstanceOf[T]
113113
(dut, new FirrtlTerpBackend(dut, chisel3.Driver.emit(dutGen), optionsManager = optionsManager))
114114
case _ =>

0 commit comments

Comments
 (0)