Added simple sanity checking of the dependencies table.

This commit is contained in:
terry%mozilla.org 1999-06-01 20:52:15 +00:00
Родитель 23a15eaea4
Коммит 1559d64635
1 изменённых файлов: 18 добавлений и 0 удалений

Просмотреть файл

@ -166,3 +166,21 @@ while (@row = FetchSQLData()) {
Alert("Bad who $who in " . BugLink($id));
}
}
Status("Checking dependency table");
SendSQL("select blocked, dependson from dependencies");
while (@row = FetchSQLData()) {
my ($blocked, $dependson) = (@row);
if (!defined $bugid{$blocked}) {
Alert("Bad blocked " . BugLink($blocked));
}
if (!defined $bugid{$dependson}) {
Alert("Bad dependson " . BugLink($dependson));
}
}
Status("Sanity check completed.");