diff options
| author | Albert Magyar | 2020-04-06 15:27:11 -0700 |
|---|---|---|
| committer | GitHub | 2020-04-06 15:27:11 -0700 |
| commit | a9034bac8df5672b04a53c0ad99d82f94465d678 (patch) | |
| tree | f86df96e9471723485bc90a7c701fdb497ec2e73 /src/test | |
| parent | 6aad5d6e91f384caedd194a8378ba0fe71013ff1 (diff) | |
| parent | 329f3c40f4626fd5c4b7d16f304a9fa3b3e4f573 (diff) | |
Merge pull request #1497 from freechipsproject/remove-deprecated-gender
Remove deprecated "Gender" API in favor of "Flow"
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/scala/firrtlTests/interval/IntervalSpec.scala | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/test/scala/firrtlTests/interval/IntervalSpec.scala b/src/test/scala/firrtlTests/interval/IntervalSpec.scala index 3914aba0..5d82f6b5 100644 --- a/src/test/scala/firrtlTests/interval/IntervalSpec.scala +++ b/src/test/scala/firrtlTests/interval/IntervalSpec.scala @@ -41,7 +41,7 @@ class IntervalSpec extends FirrtlFlatSpec { } "Interval types" should "infer bp correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints()) val input = """circuit Unit : | module Unit : @@ -62,7 +62,7 @@ class IntervalSpec extends FirrtlFlatSpec { } "Interval types" should "trim known intervals correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints(), new TrimIntervals()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints(), new TrimIntervals()) val input = """circuit Unit : | module Unit : @@ -83,7 +83,7 @@ class IntervalSpec extends FirrtlFlatSpec { } "Interval types" should "infer intervals correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints(), new TrimIntervals(), new InferWidths()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints(), new TrimIntervals(), new InferWidths()) val input = """circuit Unit : | module Unit : @@ -104,7 +104,7 @@ class IntervalSpec extends FirrtlFlatSpec { } "Interval types" should "be removed correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints(), new TrimIntervals(), new InferWidths(), new RemoveIntervals()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints(), new TrimIntervals(), new InferWidths(), new RemoveIntervals()) val input = """circuit Unit : | module Unit : @@ -133,7 +133,7 @@ class IntervalSpec extends FirrtlFlatSpec { } "Interval types" should "infer multiplication by zero correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints(), new TrimIntervals(), new InferWidths()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints(), new TrimIntervals(), new InferWidths()) val input = s"""circuit Unit : | module Unit : @@ -147,7 +147,7 @@ class IntervalSpec extends FirrtlFlatSpec { } "Interval types" should "infer muxes correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints(), new TrimIntervals(), new InferWidths()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints(), new TrimIntervals(), new InferWidths()) val input = s"""circuit Unit : | module Unit : @@ -161,7 +161,7 @@ class IntervalSpec extends FirrtlFlatSpec { executeTest(input, check.split("\n") map normalized, passes) } "Interval types" should "infer dshl correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveKinds, ResolveGenders, new InferBinaryPoints(), new TrimIntervals, new InferWidths()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveKinds, ResolveFlows, new InferBinaryPoints(), new TrimIntervals, new InferWidths()) val input = s"""circuit Unit : | module Unit : @@ -174,7 +174,7 @@ class IntervalSpec extends FirrtlFlatSpec { executeTest(input, check.split("\n") map normalized, passes) } "Interval types" should "infer asInterval correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferWidths()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferWidths()) val input = s"""circuit Unit : | module Unit : @@ -318,7 +318,7 @@ class IntervalSpec extends FirrtlFlatSpec { executeTest(input, check.split("\n") map normalized, passes) } "Interval types" should "remove negative binary points" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints(), new TrimIntervals(), new InferWidths(), new RemoveIntervals()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints(), new TrimIntervals(), new InferWidths(), new RemoveIntervals()) val input = s"""circuit Unit : | module Unit : |
