summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/CompatibilitySpec.scala
diff options
context:
space:
mode:
authorJack Koenig2019-12-06 12:11:28 -0800
committermergify[bot]2019-12-06 20:11:28 +0000
commit69ae14b485c67834ad3c9c518ef080cf75ce9b1d (patch)
tree79e09d309b51dbc9ecdfd442c968b89bf81079c2 /src/test/scala/chiselTests/CompatibilitySpec.scala
parent03bbb258a4ce6800b692e20a579757e4f054fa63 (diff)
Revert "Compat compile options macro (#1253)" (#1268)
This reverts commit 85fe90d5b7ed4e1101b0b3959a1d362eb93915ac.
Diffstat (limited to 'src/test/scala/chiselTests/CompatibilitySpec.scala')
-rw-r--r--src/test/scala/chiselTests/CompatibilitySpec.scala13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/scala/chiselTests/CompatibilitySpec.scala b/src/test/scala/chiselTests/CompatibilitySpec.scala
index b0f22774..d2b39c49 100644
--- a/src/test/scala/chiselTests/CompatibilitySpec.scala
+++ b/src/test/scala/chiselTests/CompatibilitySpec.scala
@@ -118,19 +118,6 @@ class CompatibiltySpec extends ChiselFlatSpec with GeneratorDrivenPropertyChecks
}
elaborate { new Dummy }
}
-
- it should "be able to provide custom CompileOptions" in {
- implicit val CustomCompileOptions = chisel3.ExplicitCompileOptions.NotStrict.copy(inferModuleReset = true)
- // Top-level Module always uses Bool so needs to be an inner Module
- elaborate(new Module {
- val io = IO(new Bundle {})
- val inst = Module(new Module {
- val io = IO(new Bundle {})
- assert(reset.isInstanceOf[chisel3.ResetType])
- })
- })
- }
-
// Verify we can elaborate a design expressed in Chisel2
class Chisel2CompatibleRisc extends Module {
val io = new Bundle {