From db430698bfd4d77a49e11031bb65444552891f37 Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Wed, 3 Sep 2014 07:42:57 -0400 Subject: [PATCH] tests: Use medium dataset for perlbmk regressions This patch changes the perlbmk regression script from the large to the medium dataset to reduce the regression run time. For all ISAs and CPU models, the total perlbmk host CPU time with the large dataset is roughly 12 hours (constituting >30% of the total regression host time). There is, most likely, almost no added value in terms of code coverage for this rather excessive run time. --- tests/long/se/40.perlbmk/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/long/se/40.perlbmk/test.py b/tests/long/se/40.perlbmk/test.py index 74c876978..cf29421ba 100644 --- a/tests/long/se/40.perlbmk/test.py +++ b/tests/long/se/40.perlbmk/test.py @@ -29,5 +29,5 @@ m5.util.addToPath('../configs/common') from cpu2000 import perlbmk_makerand -workload = perlbmk_makerand(isa, opsys, 'lgred') +workload = perlbmk_makerand(isa, opsys, 'mdred') root.system.cpu[0].workload = workload.makeLiveProcess()