diff options
| author | jackkoenig | 2016-09-22 18:53:02 -0700 |
|---|---|---|
| committer | Jack Koenig | 2016-10-26 15:15:37 -0700 |
| commit | d7bf4656f27de63474eec018c689e5b28e3472d8 (patch) | |
| tree | cf597b9be0a78222bda1fd73b427ebe2a23ba5c0 /src/test/scala/firrtlTests/LegalizeSpec.scala | |
| parent | d344f4400ad5e9c71c97229e33660bbe067260a0 (diff) | |
Improve integration test API and add support for Verilog resources
Change integration tests to be classes that extend abstract classes. This
allows them to be run in parallel. Also expand API to support Verilog
resources in integration tests.
Diffstat (limited to 'src/test/scala/firrtlTests/LegalizeSpec.scala')
| -rw-r--r-- | src/test/scala/firrtlTests/LegalizeSpec.scala | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/test/scala/firrtlTests/LegalizeSpec.scala b/src/test/scala/firrtlTests/LegalizeSpec.scala index 781f93d7..7caa2efe 100644 --- a/src/test/scala/firrtlTests/LegalizeSpec.scala +++ b/src/test/scala/firrtlTests/LegalizeSpec.scala @@ -29,10 +29,5 @@ package firrtlTests import firrtl._ -class LegalizeSpec extends FirrtlFlatSpec { - behavior of "Legalize" +class LegalizeExecutionTest extends ExecutionTest("Legalize", "/passes/Legalize") - it should "compile and run" in { - runFirrtlTest("Legalize", "/passes/Legalize") - } -} |
