blob: ad85668ef86d769e1d3932a29bd30cb09cfb0b62 (
plain)
1
2
3
4
5
6
7
8
9
|
// SPDX-License-Identifier: Apache-2.0
package firrtlTests
import firrtl.testutils.{ExecutionTest, ExecutionTestNoOpt}
class LegalizeExecutionTest extends ExecutionTest("Legalize", "/passes/Legalize")
// Legalize also needs to work when optimizations are turned off
class LegalizeExecutionTestNoOpt extends ExecutionTestNoOpt("Legalize", "/passes/Legalize")
|