diff options
Diffstat (limited to 'tests/configs/memtest.py')
-rw-r--r-- | tests/configs/memtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/configs/memtest.py b/tests/configs/memtest.py index db7a5ef22..959ec4e5d 100644 --- a/tests/configs/memtest.py +++ b/tests/configs/memtest.py @@ -33,7 +33,7 @@ from common.Caches import * #MAX CORES IS 8 with the fals sharing method nb_cores = 8 -cpus = [ MemTest() for i in xrange(nb_cores) ] +cpus = [ MemTest() for i in range(nb_cores) ] # system simulated system = System(cpu = cpus, |