File tree 2 files changed +15
-1
lines changed
test/scala/chiselTests/aop
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -392,7 +392,7 @@ object Select {
392
392
.block
393
393
.getCommands()
394
394
) {
395
- case Attach (_, seq) if seq.contains(signal) => seq
395
+ case Attach (_, seq) if seq.contains(Node ( signal) ) => seq
396
396
}.flatMap { seq => seq.map(_.id.asInstanceOf [Data ]) }.toSet
397
397
}
398
398
Original file line number Diff line number Diff line change @@ -88,6 +88,20 @@ class SelectSpec extends ChiselFlatSpec {
88
88
89
89
}
90
90
91
+ " Test" should " pass if selecting attach" in {
92
+ import chisel3 .experimental .{attach , Analog }
93
+ class AttachTest extends RawModule {
94
+ val a, b, c = IO (Analog (8 .W ))
95
+ attach(a, b, c)
96
+ }
97
+ val dut = ChiselGeneratorAnnotation (() => new AttachTest )
98
+ .elaborate(1 )
99
+ .asInstanceOf [DesignAnnotation [AttachTest ]]
100
+ .design
101
+ Select .attachedTo(dut)(dut.a) should be(Set (dut.a, dut.b, dut.c))
102
+
103
+ }
104
+
91
105
" Test" should " pass if selecting ops by kind" in {
92
106
val dut = ChiselGeneratorAnnotation (() => {
93
107
new SelectTester (Seq (0 , 1 , 2 ))
You can’t perform that action at this time.
0 commit comments