blob: b85d37a1cca66498ad574cfc0747bffb26f96a57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// See LICENSE for license details.
package chiselTests
import org.scalatest._
import org.scalatest.prop._
import chisel3._
import chisel3.testers.BasicTester
import chisel3.util._
class CountTester(max: Int) extends BasicTester {
val cnt = Counter(max)
when(true.B) { cnt.inc() }
when(cnt.value === (max-1).asUInt) {
stop()
}
}
class EnableTester(seed: Int) extends BasicTester {
val ens = RegInit(seed.asUInt)
ens := ens >> 1
val (cntEnVal, _) = Counter(ens(0), 32)
val (_, done) = Counter(true.B, 33)
when(done) {
assert(cntEnVal === popCount(seed).asUInt)
stop()
}
}
class WrapTester(max: Int) extends BasicTester {
val (cnt, wrap) = Counter(true.B, max)
when(wrap) {
assert(cnt === (max - 1).asUInt)
stop()
}
}
class CounterSpec extends ChiselPropSpec {
property("Counter should count up") {
forAll(smallPosInts) { (max: Int) => assertTesterPasses{ new CountTester(max) } }
}
property("Counter can be en/disabled") {
forAll(safeUInts) { (seed: Int) => whenever(seed >= 0) { assertTesterPasses{ new EnableTester(seed) } } }
}
property("Counter should wrap") {
forAll(smallPosInts) { (max: Int) => assertTesterPasses{ new WrapTester(max) } }
}
}
|