changeset 1127:3e98925bcc39

Fix makewebstatistics: don't try to drop a test multiple times.
author Frits van Bommel <fvbommel wxs.nl>
date Fri, 20 Mar 2009 15:47:42 +0100
parents 899a2d90645b
children 83ef1e7cde70
files tests/makewebstatistics.d
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/tests/makewebstatistics.d	Wed Mar 18 15:33:19 2009 +0100
+++ b/tests/makewebstatistics.d	Fri Mar 20 15:47:42 2009 +0100
@@ -226,11 +226,13 @@
 						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 @@
 			if(i >= 0){
 				counts[tests[source].r & Result.BASE_MASK]--;
 				tests.remove(source);
+				continue;
 			}
 		}
 		tests.rehash;