summaryrefslogtreecommitdiff
path: root/src/main/scala/Chisel/testers/Driver.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/Chisel/testers/Driver.scala')
-rw-r--r--src/main/scala/Chisel/testers/Driver.scala21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/main/scala/Chisel/testers/Driver.scala b/src/main/scala/Chisel/testers/Driver.scala
deleted file mode 100644
index 860ef69c..00000000
--- a/src/main/scala/Chisel/testers/Driver.scala
+++ /dev/null
@@ -1,21 +0,0 @@
-// See LICENSE for license details.
-
-package Chisel.testers
-import Chisel._
-
-object TesterDriver {
- /** For use with modules that should successfully be elaborated by the
- * frontend, and which can be turned into executeables with error codes. */
- def execute(t: => BasicTester): Boolean = {
- val circuit = Builder.build(Module(t))
- //val executable = invokeFIRRTL(circuit)
- //Process(executable) !
- true
- }
-
- /** For use with modules that should illicit errors from the frontend
- * or which produce IR with consistantly checkable properties. */
- def elaborate(t: => Module): Circuit = {
- Builder.build(Module(t))
- }
-}