aboutsummaryrefslogtreecommitdiff
path: root/test/passes/make-explicit-reset/mix-reset.fir
diff options
context:
space:
mode:
authorazidar2015-02-25 12:50:00 -0800
committerazidar2015-02-25 12:50:00 -0800
commita9d23329a6f586d71a1a39908be872ec8f69d562 (patch)
treec596296432ea21784ef5a8aafea1535cfa808dc7 /test/passes/make-explicit-reset/mix-reset.fir
parenteecee97aaf18c905b44e664b6a7cab742eedcea5 (diff)
Added debug print statements to dump fields from nodes, and updated tests to call firrtl correctly to enable/disable them
Diffstat (limited to 'test/passes/make-explicit-reset/mix-reset.fir')
-rw-r--r--test/passes/make-explicit-reset/mix-reset.fir9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/passes/make-explicit-reset/mix-reset.fir b/test/passes/make-explicit-reset/mix-reset.fir
index 23a1232a..c6487c8d 100644
--- a/test/passes/make-explicit-reset/mix-reset.fir
+++ b/test/passes/make-explicit-reset/mix-reset.fir
@@ -1,4 +1,4 @@
-; RUN: firrtl %s abc | tee %s.out | FileCheck %s
+; RUN: firrtl %s abc c | tee %s.out | FileCheck %s
; CHECK: Make Explicit Reset
circuit top :
@@ -7,14 +7,14 @@ circuit top :
input x : UInt(16)
output y : UInt(16)
inst b of B
- ;CHECK: inst:b.reset := port:reset
+ ;CHECK: b.reset := reset
module B :
input reset : UInt(1)
;CHECK: input reset : UInt(1)
input x : UInt(16)
output y : UInt(16)
inst c of C
- ;CHECK: inst:c.reset := port:reset
+ ;CHECK: c.reset := reset
module C :
;CHECK: input reset : UInt(1)
input a : UInt(16)
@@ -25,4 +25,5 @@ circuit top :
input b : UInt(16)
output z : UInt
inst a of A
- ;CHECK: inst:a.reset := port:reset
+ ;CHECK: a.reset := reset
+;CHECK: Finished Make Explicit Reset