summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorJim Lawson2016-09-06 08:46:16 -0700
committerJim Lawson2016-09-06 08:46:16 -0700
commit8e2615fd3852c7ffa5ee1884cca0f77062f3cc21 (patch)
tree2867b5979f3b04b83b134a26c211622a73910758 /src/test
parent3451ac840b3008597a6905c21d0e77ed613d5dbd (diff)
Verify we can suppress the inclusion of default compileOptions.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/scala/chiselTests/CompileOptionsTest.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/scala/chiselTests/CompileOptionsTest.scala b/src/test/scala/chiselTests/CompileOptionsTest.scala
index f835ab0d..de75d07b 100644
--- a/src/test/scala/chiselTests/CompileOptionsTest.scala
+++ b/src/test/scala/chiselTests/CompileOptionsTest.scala
@@ -168,6 +168,8 @@ class CompileOptionsSpec extends ChiselFlatSpec {
"A Module with directionless connections when compiled with implicit Strict.CompileOption " should "throw an exception" in {
a [ChiselException] should be thrownBy {
+ // Verify we can suppress the inclusion of default compileOptions
+ import Chisel.{defaultCompileOptions => _, _}
import chisel3.Strict.CompileOptions
class SimpleModule extends Module {