From e242f81475a5c956c8a4805ae1e3ec9d015ceacd Mon Sep 17 00:00:00 2001 From: Frits van Bommel Date: Fri, 20 Mar 2009 15:47:42 +0100 Subject: [PATCH] Fix makewebstatistics: don't try to drop a test multiple times. --- tests/makewebstatistics.d | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/makewebstatistics.d b/tests/makewebstatistics.d index 30ded684..6b9d4510 100644 --- a/tests/makewebstatistics.d +++ b/tests/makewebstatistics.d @@ -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;