aboutsummaryrefslogtreecommitdiff
path: root/test/features/BulkConnect.fir
diff options
context:
space:
mode:
authorAdam Izraelevitz2016-08-15 10:32:41 -0700
committerGitHub2016-08-15 10:32:41 -0700
commitbebd04c4c68c320b2b72325e348c726dc33beae6 (patch)
tree69f6d4da577977cc7ff428b0545bb4735507aad0 /test/features/BulkConnect.fir
parentcca37c46fc0848f5dbf5f95ba60755ed6d60712b (diff)
Remove stanza (#231)
* Removed stanza implementation/tests. In the future we can move the stanza tests over, but for now they should be deleted. * Added back integration .fir files * Added Makefile to give Travis hooks * Added firrtl script (was ignored before)
Diffstat (limited to 'test/features/BulkConnect.fir')
-rw-r--r--test/features/BulkConnect.fir39
1 files changed, 0 insertions, 39 deletions
diff --git a/test/features/BulkConnect.fir b/test/features/BulkConnect.fir
deleted file mode 100644
index 1b68bbdc..00000000
--- a/test/features/BulkConnect.fir
+++ /dev/null
@@ -1,39 +0,0 @@
-; RUN: firrtl -i %s -o %s.v -X verilog -p c 2>&1 | tee %s.out | FileCheck %s
-;CHECK: Expand Connects
-circuit Top :
- module Top :
- wire a : { w : UInt}
- a.w <= UInt(1)
- wire b : { w : UInt<42>, x : UInt<20>}
- b.w <= UInt(1)
- b.x <= UInt(1)
- a <- b
- ; CHECK: a.w <= b.w
- ; CHECK-NOT: a.x <= b.x
- ; CHECK-NOT: a.y <= b.y
- ; CHECK-NOT: b.y <= a.y
- ; CHECK-NOT: a.z <= b.z
-
-
- wire c : { x : { y : UInt<1>, z : UInt<1>}}[4]
- c[0].x.z <= UInt(1)
- c[1].x.z <= UInt(1)
- c[2].x.y <= UInt(1)
- c[2].x.z <= UInt(1)
- c[3].x.y <= UInt(1)
- c[3].x.z <= UInt(1)
- wire d : { x : { y : UInt<1>}}[2]
- d[0].x.y <= UInt(1)
- d[1].x.y <= UInt(1)
- c <- d
- ; CHECK: c[0].x.y <= d[0].x.y
- ; CHECK: c[1].x.y <= d[1].x.y
- ; CHECK-NOT: c[2].x.y <= d[2].x.y
- ; CHECK-NOT: c[3].x.y <= d[3].x.y
- ; CHECK-NOT: c[0].x.z <= d[0].x.z
- ; CHECK-NOT: c[1].x.z <= d[1].x.z
- ; CHECK-NOT: c[2].x.z <= d[2].x.z
- ; CHECK-NOT: c[3].x.z <= d[3].x.z
-
-;CHECK: Finished Expand Connects
-;CHECK: Done!