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/ChirrtlSpec.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/ChirrtlSpec.scala')
| -rw-r--r-- | src/test/scala/firrtlTests/ChirrtlSpec.scala | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/test/scala/firrtlTests/ChirrtlSpec.scala b/src/test/scala/firrtlTests/ChirrtlSpec.scala index a24cd9fa..04f66d08 100644 --- a/src/test/scala/firrtlTests/ChirrtlSpec.scala +++ b/src/test/scala/firrtlTests/ChirrtlSpec.scala @@ -93,8 +93,7 @@ class ChirrtlSpec extends FirrtlFlatSpec { } } } - - it should "compile and run" in { - runFirrtlTest("ChirrtlMems", "/features") - } } + +class ChirrtlMemsExecutionTest extends ExecutionTest("ChirrtlMems", "/features") + |
