diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2007-02-06 21:16:33 -0800 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2007-02-06 21:16:33 -0800 |
commit | d4867001490911bf853130ec0eeb1731ba71da37 (patch) | |
tree | 7bb115e97a32b5742dbd873f5b914d43b2578534 /tests/configs | |
parent | 98ef836ca6a851c14b335603f75a2d728a897936 (diff) | |
download | gem5-d4867001490911bf853130ec0eeb1731ba71da37.tar.xz |
Add short memtest run to quick regressions.
Caveats:
- Even though memtest is ISA-independent, it will only
run for the Alpha builds, since there's no way to specify
ISA-independent reference files and I didn't want to commit
3 copies since I'm not sure we want to run it for all the
different ISAs anyway.
- Reference outputs were generated on my laptop,
so performance numbers will be low compared to zizzer.
--HG--
extra : convert_revision : 210fe4abecc19fbab0b15402c6cb4863650bab66
Diffstat (limited to 'tests/configs')
-rw-r--r-- | tests/configs/memtest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/configs/memtest.py b/tests/configs/memtest.py index 2b990418c..f56edef4a 100644 --- a/tests/configs/memtest.py +++ b/tests/configs/memtest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2006 The Regents of The University of Michigan +# Copyright (c) 2006-2007 The Regents of The University of Michigan # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -53,7 +53,7 @@ class L2(BaseCache): #MAX CORES IS 8 with the fals sharing method nb_cores = 8 -cpus = [ MemTest(atomic=False, max_loads=1e12, percent_uncacheable=10, progress_interval=1000) for i in xrange(nb_cores) ] +cpus = [ MemTest() for i in xrange(nb_cores) ] # system simulated system = System(cpu = cpus, funcmem = PhysicalMemory(), |