Fix makewebstatistics: don't try to drop a test multiple times.

This commit is contained in:
Frits van Bommel
2009-03-20 15:47:42 +01:00
parent d1911d40d6
commit e242f81475

View File

@@ -226,11 +226,13 @@ class Log{
debug(drop) fwritefln(stderr, "dropped: %s", source);
counts[tests[source].r & Result.BASE_MASK]--;
tests.remove(source);
continue;
}
}catch(Exception e){
debug(drop) fwritefln(stderr, "dropped: %s", source);
counts[tests[source].r & Result.BASE_MASK]--;
tests.remove(source);
continue;
}
}
// asm-filter
@@ -238,6 +240,7 @@ class Log{
if(i >= 0){
counts[tests[source].r & Result.BASE_MASK]--;
tests.remove(source);
continue;
}
}
tests.rehash;