Skip to content

Commit

Permalink
Reduce regression time
Browse files Browse the repository at this point in the history
  • Loading branch information
Dolu1990 committed Mar 6, 2024
1 parent 646cc0f commit b0b1409
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/scala/naxriscv/NaxRiscvRegression.scala
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ class NaxRiscvRegression extends MultithreadedFunSuite(sys.env.getOrElse("NAXRIS
}


doTest("config_rv32imasu", Config.plugins(withRdTime = false, xlen = 32, withRvc = false), linuxCount = 0, freertosCount = 1)
doTest("config_rv64imasu", Config.plugins(withRdTime = false, xlen = 64, withRvc = false), linuxCount = 0, freertosCount = 1)
doTest("config_rv32imacsu", Config.plugins(withRdTime = false, xlen = 32, withRvc = true), linuxCount = 1, freertosCount = 1)
doTest("config_rv32imasu", Config.plugins(withRdTime = false, xlen = 32, withRvc = false), linuxCount = 0, freertosCount = 0)
doTest("config_rv64imasu", Config.plugins(withRdTime = false, xlen = 64, withRvc = false), linuxCount = 0, freertosCount = 0)
doTest("config_rv32imacsu", Config.plugins(withRdTime = false, xlen = 32, withRvc = true), linuxCount = 0, freertosCount = 0)
doTest("config_rv32imafcsu", Config.plugins(withRdTime = false, xlen = 32, withRvc = true, withFloat = true, withDouble = false), linuxCount = 0, freertosCount = 0)
doTest("config_rv32imafdcsu", Config.plugins(withRdTime = false, xlen = 32, withRvc = true, withFloat = true, withDouble = true), linuxCount = 0, freertosCount = 1)
doTest("config_rv64imacsu", Config.plugins(withRdTime = false, xlen = 64, withRvc = true), linuxCount = 0, freertosCount =1)
doTest("config_rv64imacsu", Config.plugins(withRdTime = false, xlen = 64, withRvc = true), linuxCount = 0, freertosCount = 0)
doTest("config_rv64imafcsu", Config.plugins(withRdTime = false, xlen = 64, withRvc = true, withFloat = true, withDouble = false), linuxCount = 0, freertosCount = 0)
doTest("config_rv64imafdcsu", Config.plugins(withRdTime = false, xlen = 64, withRvc = true, withFloat = true, withDouble = true), linuxCount = 1, freertosCount = 1)
}
Expand Down

0 comments on commit b0b1409

Please sign in to comment.