Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Removed verbose mode, and vcd output from test (#368)
Browse files Browse the repository at this point in the history
Cleaned up imports
  • Loading branch information
chick authored Sep 29, 2021
1 parent 279338b commit d0baa44
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/main/scala/treadle/executable/SymbolTable.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
package treadle.executable

import firrtl._
import firrtl.annotations.ReferenceTarget
import firrtl.graph.DiGraph
import firrtl.ir._
import logger.LazyLogging
Expand Down
3 changes: 1 addition & 2 deletions src/test/scala/treadle/StopBehaviorSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import firrtl.ir.NoInfo

import java.io.{ByteArrayOutputStream, PrintStream}
import firrtl.stage.FirrtlSourceAnnotation
import logger.{LogLevel, LogLevelAnnotation}
import org.scalatest.freespec.AnyFreeSpec
import org.scalatest.matchers.should.Matchers
import treadle.executable.StopException
Expand Down Expand Up @@ -263,7 +262,7 @@ class StopBehaviorSpec extends AnyFreeSpec with Matchers {
| c0.stop0En <= and(selChild0, stop0En)
|""".stripMargin

TreadleTestHarness(Seq(FirrtlSourceAnnotation(input), VerboseAnnotation, WriteVcdAnnotation)) { tester =>
TreadleTestHarness(Seq(FirrtlSourceAnnotation(input))) { tester =>
// set every input to zero by default
tester.poke("stop0En", 0)
tester.poke("selParent", 0)
Expand Down

0 comments on commit d0baa44

Please sign in to comment.