Various fixes to memory code.
authorErik Hallnor <ehallnor@umich.edu>
Thu, 6 Nov 2003 23:39:26 +0000 (18:39 -0500)
committerErik Hallnor <ehallnor@umich.edu>
Thu, 6 Nov 2003 23:39:26 +0000 (18:39 -0500)
cpu/memtest/memtest.cc:
    Disable probes until the work in all cases
util/rundiff:
    Comment out Algorithm::Diff since its not needed.

--HG--
extra : convert_revision : 40e76ae8926650986a170a0ba6ef331519aceb19

cpu/memtest/memtest.cc
util/rundiff

index b6224996edfa91c4f6a8822d86d9393fca9aa393..db24bb507011bbc567dae9246a699e9f214a7a23 100644 (file)
@@ -223,6 +223,7 @@ MemTest::tick()
         req->paddr = ((base) ? baseAddr1 : baseAddr2) + offset1;
     }
     bool probe = (rand() % 2 == 1) && !req->isUncacheable();
+    probe = false;
 
     req->size = 1 << access_size;
     req->data = new uint8_t[req->size];
index 4aed9200ee3e3a253f5f06d6fe4ab25be1a9d6b2..732b84d210ef837a66311e0908fe2059ec481730 100755 (executable)
@@ -49,9 +49,9 @@ use strict;
 # and generally quite adequate algorithm will be used instead.
 my $use_complexdiff = 0;
 
-if ($use_complexdiff) {
-    use Algorithm::Diff qw(traverse_sequences);
-};
+#if ($use_complexdiff) {
+#    use Algorithm::Diff qw(traverse_sequences);
+#};
 
 my $lookahead_lines = 200;
 my $precontext_lines = 3;