summaryrefslogtreecommitdiff
path: root/src/main/scala/Chisel/testers/TesterDriver.scala
diff options
context:
space:
mode:
authorchick2016-02-10 14:29:49 -0800
committerchick2016-02-10 14:29:49 -0800
commita9355ba3784e3c5ae611f096a48b4ee5c78464ad (patch)
tree1b1431d32877d3fb3241c661ebf92f1dc80f1ce9 /src/main/scala/Chisel/testers/TesterDriver.scala
parentc9d9a313b39fa1d43f794c85ec31d8deb847dc9c (diff)
TesterDriverSpec is simpler and cleaner, extraneous circuit has been removed.
Cleanup comment for finish method in BasicTester, and finishWrapper in TesterDriver.
Diffstat (limited to 'src/main/scala/Chisel/testers/TesterDriver.scala')
-rw-r--r--src/main/scala/Chisel/testers/TesterDriver.scala10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/main/scala/Chisel/testers/TesterDriver.scala b/src/main/scala/Chisel/testers/TesterDriver.scala
index 2b7019c9..4547f48f 100644
--- a/src/main/scala/Chisel/testers/TesterDriver.scala
+++ b/src/main/scala/Chisel/testers/TesterDriver.scala
@@ -55,12 +55,10 @@ object TesterDriver extends BackendCompilationUtilities {
false
}
}
- /*
- * provides a hook for testers to implement necessary control logic for tests after the
- * implementation of the users test definition has been completed.
- * typically the finish method will inspect the users circuit and connect the tester
- * to the device under test
- */
+ /**
+ * Calls the finish method of an BasicTester or a class that extends it.
+ * The finish method is a hook for code that augments the circuit built in the constructor.
+ */
def finishWrapper(test: () => BasicTester): () => BasicTester = {
() => {
val tester = test()