summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorAlbert Chen2018-11-26 09:47:28 -0800
committerSchuyler Eldridge2018-11-26 12:47:28 -0500
commitab951049c2c60402e2318ba863520d4a16c8288d (patch)
tree496a62cb509f06711a01795bca7eafc8ae260a8b /src/test
parentdd82374f79005a2998b016712f0aec07775eb506 (diff)
Trim Stack Trace (#931)
- Trim stack trace to show better, reduced information to the user - Add --full-stacktrace to FIRRTL option to show full stack trace
Diffstat (limited to 'src/test')
-rw-r--r--src/test/scala/chiselTests/DontTouchSpec.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/DontTouchSpec.scala b/src/test/scala/chiselTests/DontTouchSpec.scala
index 7aa4d2e2..6759222c 100644
--- a/src/test/scala/chiselTests/DontTouchSpec.scala
+++ b/src/test/scala/chiselTests/DontTouchSpec.scala
@@ -53,7 +53,7 @@ class DontTouchSpec extends ChiselFlatSpec {
}
"Dont touch" should "only work on bound hardware" in {
a [chisel3.core.Binding.BindingException] should be thrownBy {
- compile(new Module {
+ elaborate(new Module {
val io = IO(new Bundle { })
dontTouch(new Bundle { val a = UInt(32.W) } )
})