From ef4915bd2c1ed3a0fbca90ffb7b41b14f56d3754 Mon Sep 17 00:00:00 2001 From: Colin Schmidt Date: Wed, 24 Feb 2016 15:23:37 -0800 Subject: [PATCH] make the asm suites ordered by their insertion order --- src/main/scala/Testing.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/scala/Testing.scala b/src/main/scala/Testing.scala index b08301df..1ddadd18 100644 --- a/src/main/scala/Testing.scala +++ b/src/main/scala/Testing.scala @@ -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) {