diff options
| author | Albert Chen | 2018-11-26 09:47:28 -0800 |
|---|---|---|
| committer | Schuyler Eldridge | 2018-11-26 12:47:28 -0500 |
| commit | ab951049c2c60402e2318ba863520d4a16c8288d (patch) | |
| tree | 496a62cb509f06711a01795bca7eafc8ae260a8b /src/test | |
| parent | dd82374f79005a2998b016712f0aec07775eb506 (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.scala | 2 |
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) } ) }) |
