blob: 4458c6d592200b9889a13ae64910457a2c2c2288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
// This verifies that strange characters in an add-on version don't break the
// crash annotation.
createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1.9.2");
add_task(async function run_test() {
await promiseStartupManager();
let n = 1;
for (let version in ["1,0", "1:0"]) {
let id = `addon${n++}@tests.mozilla.org`;
await promiseInstallWebExtension({
manifest: {
version,
browser_specific_settings: { gecko: { id } },
},
});
do_check_in_crash_annotation(id, version);
}
});
|