Closed
Bug 563724
Opened 16 years ago
Closed 12 years ago
Implement universal manifest format for mochitest
Categories
(Testing :: Mochitest, defect)
Testing
Mochitest
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: jgriffin, Unassigned)
References
(Blocks 1 open bug)
Details
(Whiteboard: [mozbase])
This should be JSON, and as a first iteration should just be list of test names, e.g,.
{ "tests": [
"mytest1.html",
"mytest2.html",
"othertest.html",
]
}
There should be one manifest per test directory, and the top manifest file should include direct descendants via some type of include directive, perhaps like:
{ "tests": [
"mytest1.html",
"mytest2.html",
"othertest.html",
],
"include": [
"dom1.manifest",
"dom0.manifest",
]
}
We may want separate bugs for implementing this in mochitest plain, chrome, and browser-chrome. We may want a separate bug for removing mochitests from make files at the same time.
Updated•13 years ago
|
Whiteboard: [mozbase]
Comment 1•13 years ago
|
||
So we also have ManifestDestiny as part of mozbase: https://github.com/mozilla/mozbase/tree/master/manifestdestiny
It would be nice to consolidate on a particular internal format. It would be easy enough to support JSON in manifestdestiny if that is a blocker.
Comment 2•13 years ago
|
||
We should use ManifestDestiny. I think this bug predates ManifestDestiny. :)
Comment 3•12 years ago
|
||
Support for manifestdestiny is now in the mochitest harness, WONTFIXING.
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•