RAMpage campaign: update for 2G experiments

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1679 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
hsc
2012-09-23 17:28:13 +00:00
parent 7ffd6611d3
commit 0783931bf6
2 changed files with 8 additions and 4 deletions

View File

@ -60,7 +60,7 @@ bool RAMpageCampaign::run()
<< address_bits << " address bits" << endl;
// systematically march through the fault space
for (uint64_t n = 0; n < 1024*256; ++n) {
for (uint64_t n = 0; n < 1024*512; ++n) {
uint64_t addr = reverse_bits(n) >> (64 - address_bits);
if (addr >= MEM_SIZE ||
existing_results.find(addr) != existing_results.end()) {
@ -72,8 +72,12 @@ bool RAMpageCampaign::run()
d->msg.set_mem_bit(4);
d->msg.set_errortype(d->msg.ERROR_STUCK_AT_1);
d->msg.set_empty_passes(2);
d->msg.set_local_timeout(1000*60*10); // 10m
d->msg.set_global_timeout(1000*60*50); // 50m
//d->msg.set_local_timeout(1000*60*10); // 10m
//d->msg.set_global_timeout(1000*60*50); // 50m
//d->msg.set_local_timeout(1000*60*20); // 20m
//d->msg.set_global_timeout(1000*60*90); // 90m
d->msg.set_local_timeout(1000*60*20); // 20m
d->msg.set_global_timeout(1000*60*120); // 120m
campaignmanager.addParam(d);
}
campaignmanager.noMoreParameters();

View File

@ -1,3 +1,3 @@
#pragma once
#define MEM_SIZE (1024*1024*1024) // the QEMU SAL doesn't supply that information yet
#define MEM_SIZE (2047*1024*1024) // the QEMU SAL doesn't supply that information yet