Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
e2709ad3
Commit
e2709ad3
authored
Mar 06, 1999
by
terry%netscape.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check qa_contact IDs.
parent
04fa4c5f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
sanitycheck.cgi
sanitycheck.cgi
+6
-3
No files found.
sanitycheck.cgi
View file @
e2709ad3
...
@@ -107,13 +107,13 @@ while (@row = FetchSQLData()) {
...
@@ -107,13 +107,13 @@ while (@row = FetchSQLData()) {
undef
$profid
{
0
};
undef
$profid
{
0
};
Status
(
"Checking reporter/assigned_to ids"
);
Status
(
"Checking reporter/assigned_to
/qa_contact
ids"
);
SendSQL
(
"select bug_id,reporter,assigned_to from bugs"
);
SendSQL
(
"select bug_id,reporter,assigned_to
,qa_contact
from bugs"
);
my
%
bugid
;
my
%
bugid
;
while
(
@row
=
FetchSQLData
())
{
while
(
@row
=
FetchSQLData
())
{
my
(
$id
,
$reporter
,
$assigned_to
)
=
(
@row
);
my
(
$id
,
$reporter
,
$assigned_to
,
$qa_contact
)
=
(
@row
);
$bugid
{
$id
}
=
1
;
$bugid
{
$id
}
=
1
;
if
(
!
defined
$profid
{
$reporter
})
{
if
(
!
defined
$profid
{
$reporter
})
{
Alert
(
"Bad reporter $reporter in "
.
BugLink
(
$id
));
Alert
(
"Bad reporter $reporter in "
.
BugLink
(
$id
));
...
@@ -121,6 +121,9 @@ while (@row = FetchSQLData()) {
...
@@ -121,6 +121,9 @@ while (@row = FetchSQLData()) {
if
(
!
defined
$profid
{
$assigned_to
})
{
if
(
!
defined
$profid
{
$assigned_to
})
{
Alert
(
"Bad assigned_to $assigned_to in"
.
BugLink
(
$id
));
Alert
(
"Bad assigned_to $assigned_to in"
.
BugLink
(
$id
));
}
}
if
(
$qa_contact
!=
0
&&
!
defined
$profid
{
$qa_contact
})
{
Alert
(
"Bad qa_contact $qa_contact in"
.
BugLink
(
$id
));
}
}
}
Status
(
"Checking CC table"
);
Status
(
"Checking CC table"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment