1
0

make the asm suites ordered by their insertion order

This commit is contained in:
Colin Schmidt 2016-02-24 15:23:37 -08:00
parent ad81d95751
commit ef4915bd2c

View File

@ -3,7 +3,7 @@
package rocketchip
import Chisel._
import scala.collection.mutable.LinkedHashSet
import scala.collection.mutable.{LinkedHashSet,LinkedHashMap}
import cde.{Parameters, ParameterDump, Config}
import uncore.AllSCRFiles
@ -75,7 +75,7 @@ class BenchmarkGroundTestSuite extends BenchmarkTestSuite("", "", LinkedHashSet(
object TestGeneration extends FileSystemUtilities{
import scala.collection.mutable.HashMap
val asmSuites = new HashMap[String,AssemblyTestSuite]()
val asmSuites = new LinkedHashMap[String,AssemblyTestSuite]()
val bmarkSuites = new HashMap[String,BenchmarkTestSuite]()
def addSuite(s: RocketTestSuite) {