Closed
Bug 494501
Opened 17 years ago
Closed 13 years ago
Add a field for Litmus test cases
Categories
(bugzilla.mozilla.org :: General, enhancement)
bugzilla.mozilla.org
General
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: u279076, Unassigned)
References
()
Details
Attachments
(1 file)
|
22.03 KB,
text/plain
|
Details |
I would like a field that allows easier linking to related test cases in Litmus. The expected behaviour would be the same as the Depends or Blocks field. In other words, enter a test case number and it creates a link to the test case in Litmus.
This would be extremely useful for both tracking bugs that have/need test cases and to make sure critical bugs have a test case.
When I was working at Songbird last summer, we implemented this feature and found it to be invaluable. I have included a link to an example Songbird bug.
http://bugzilla.songbirdnest.com/show_bug.cgi?id=8967
Updated•17 years ago
|
Assignee: general → nobody
Component: Bugzilla-General → Bugzilla: Other b.m.o Issues
Product: Bugzilla → mozilla.org
QA Contact: default-qa → other-bmo-issues
Version: unspecified → other
If I ask nicely, I may be able to get the Bugzilla dev at Songbird to show us how she implemented this feature.
I've heard back from the Bugzilla Admin at Songbird:
"It required a very small amount of code once I figured out how to wedge the functionality in without screwing ourselves for future CVS updates. I basically piggybacked on existing code for the depends on/blocks fields to create and maintain the list of tests. That required a new, super-simple table in the DB:
mysql> describe testcases;
+-------------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+--------------+------+-----+---------+-------+
| bug_id | mediumint(9) | NO | MUL | 0 | |
| testcase_id | mediumint(9) | NO | MUL | 0 | |
+-------------+--------------+------+-----+---------+-------+
2 rows in set (0.00 sec)
I've attached a patch that isn't quite the final one but is pretty close. It'll give you a good idea of what was involved."
I'll attach the patch she included with the email
| Assignee | ||
Updated•14 years ago
|
Component: Bugzilla: Other b.m.o Issues → General
Product: mozilla.org → bugzilla.mozilla.org
closing bug due to inactivity. please re-open this bug if still relevant.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•