diff options
| author | Hasan Genc | 2018-10-29 15:25:28 -0700 |
|---|---|---|
| committer | Schuyler Eldridge | 2018-10-29 18:25:28 -0400 |
| commit | 4dddde56d0c1a66a05457c7dda409238d2de8e8a (patch) | |
| tree | 70c0e51659d7f510bf2c22ea86c766ef763bb527 /src/test/scala/chiselTests | |
| parent | 012c503044b35fb7a432b39a769cd06e29ace2eb (diff) | |
Turn off strong enum annotations (#916)
* Turned off strong enum annotations because they weren't working
with Vec indexes
* Ignore annotation tests using ScalaTest's 'ignore', rather than
by commenting them out
Diffstat (limited to 'src/test/scala/chiselTests')
| -rw-r--r-- | src/test/scala/chiselTests/StrongEnum.scala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/chiselTests/StrongEnum.scala b/src/test/scala/chiselTests/StrongEnum.scala index 98286624..15ce943b 100644 --- a/src/test/scala/chiselTests/StrongEnum.scala +++ b/src/test/scala/chiselTests/StrongEnum.scala @@ -372,11 +372,11 @@ class StrongEnumSpec extends ChiselFlatSpec { } } -class StrongEnumAnnotationSpec extends FreeSpec with Matchers { +class StrongEnumAnnotationSpec extends ChiselFlatSpec { import chisel3.experimental.EnumAnnotations._ import firrtl.annotations.ComponentName - "Test that strong enums annotate themselves appropriately" in { + ignore should "Test that strong enums annotate themselves appropriately" in { def test() = { Driver.execute(Array("--target-dir", "test_run_dir"), () => new StrongEnumFSM) match { |
