summaryrefslogtreecommitdiff
path: root/integration-tests/src/test/scala/chiselTests/util/experimental/DecoderSpec.scala
diff options
context:
space:
mode:
authormergify[bot]2022-10-25 01:58:03 +0000
committerGitHub2022-10-25 01:58:03 +0000
commit2f890aabc1ecf04c6efcb84cee4f00da67be6a53 (patch)
treef913d335a49fa5394ff4435018277fd00e458235 /integration-tests/src/test/scala/chiselTests/util/experimental/DecoderSpec.scala
parentf86c1ff7b39146f23cd1959bcc63dcb3b0b27125 (diff)
Add Scalafmt for mill (backport #2805) (#2807)
* Add Scalafmt for mill (#2805) * add scalafmt for test in mill build system. * reformat codes in integration-tests (cherry picked from commit d881fd29d7af91a7c514565b4b21797f1e44fbdb) # Conflicts: # build.sc # integration-tests/src/test/scala/chiselTests/util/experimental/BitPat.scala * Resolve backport conflicts Co-authored-by: Jiuyang Liu <liu@jiuyang.me> Co-authored-by: Jack Koenig <koenig@sifive.com>
Diffstat (limited to 'integration-tests/src/test/scala/chiselTests/util/experimental/DecoderSpec.scala')
-rw-r--r--integration-tests/src/test/scala/chiselTests/util/experimental/DecoderSpec.scala24
1 files changed, 13 insertions, 11 deletions
diff --git a/integration-tests/src/test/scala/chiselTests/util/experimental/DecoderSpec.scala b/integration-tests/src/test/scala/chiselTests/util/experimental/DecoderSpec.scala
index 2d50555e..c75113f6 100644
--- a/integration-tests/src/test/scala/chiselTests/util/experimental/DecoderSpec.scala
+++ b/integration-tests/src/test/scala/chiselTests/util/experimental/DecoderSpec.scala
@@ -9,11 +9,10 @@ import org.scalatest.flatspec.AnyFlatSpec
import chiseltest._
import chiseltest.formal._
-class DecoderSpec extends AnyFlatSpec with ChiselScalatestTester with Formal {
- val xor = TruthTable.fromString(
- """10->1
- |01->1
- | 0""".stripMargin)
+class DecoderSpec extends AnyFlatSpec with ChiselScalatestTester with Formal {
+ val xor = TruthTable.fromString("""10->1
+ |01->1
+ | 0""".stripMargin)
def minimizer: Minimizer = QMCMinimizer
@@ -23,7 +22,8 @@ class DecoderSpec extends AnyFlatSpec with ChiselScalatestTester with Formal {
"decoder" should "fail with a incorrect DecodeTableAnnotation" in {
val annos = Seq(
- DecodeTableAnnotation(ReferenceTarget("", "", Nil, "", Nil),
+ DecodeTableAnnotation(
+ ReferenceTarget("", "", Nil, "", Nil),
"""10->1
|01->1
| 0""".stripMargin,
@@ -38,14 +38,16 @@ class DecoderSpec extends AnyFlatSpec with ChiselScalatestTester with Formal {
"decoder" should "success with a correct DecodeTableAnnotation" in {
val annos = Seq(
- DecodeTableAnnotation(ReferenceTarget("", "", Nil, "", Nil),
+ DecodeTableAnnotation(
+ ReferenceTarget("", "", Nil, "", Nil),
"""10->1
|01->1
| 0""".stripMargin,
- QMCMinimizer.minimize(TruthTable.fromString(
- """10->1
- |01->1
- | 0""".stripMargin)).toString
+ QMCMinimizer
+ .minimize(TruthTable.fromString("""10->1
+ |01->1
+ | 0""".stripMargin))
+ .toString
)
)
verify(new DecodeTestModule(minimizer, table = xor), BoundedCheck(1) +: annos)