commit dd789928e555a1556815e4762ff3d8a3c4960547
parent 6d4c6bf717d84e07345e648568def029a9f93123
Author: John M. Schanck <jschanck@mozilla.com>
Date: Tue, 2 Dec 2025 21:08:24 +0000
Bug 2003129 - account for already-accumulated telemetry in testRetryMlkem768x25519. r=keeler
Differential Revision: https://phabricator.services.mozilla.com/D274825
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/security/manager/ssl/tests/unit/test_faulty_server.js b/security/manager/ssl/tests/unit/test_faulty_server.js
@@ -84,6 +84,9 @@ add_task(
// ssl_grp_ec_curve25519 = 29
let countOfMlkem = handlerCount("/callback/4588");
let countOfX25519 = handlerCount("/callback/29");
+ let countOfPrEndOfFileError =
+ await Glean.tls.xyberIntoleranceReason.PR_END_OF_FILE_ERROR.testGetValue();
+
let chan = makeChan(`https://${retryDomain}:8443`);
let [, buf] = await channelOpenPromise(chan, CL_ALLOW_UNKNOWN_CL);
ok(buf);
@@ -99,7 +102,7 @@ add_task(
if (!mozinfo.socketprocess_networking) {
// Bug 1824574
equal(
- 1,
+ countOfPrEndOfFileError + 1,
await Glean.tls.xyberIntoleranceReason.PR_END_OF_FILE_ERROR.testGetValue(),
"PR_END_OF_FILE_ERROR telemetry accumulated"
);
diff --git a/security/manager/ssl/tests/unit/xpcshell.toml b/security/manager/ssl/tests/unit/xpcshell.toml
@@ -203,9 +203,6 @@ run-sequentially = ["true"] # hardcoded ports
["test_faulty_server.js"]
run-sequentially = ["true"] # hardcoded ports
-skip-if = [
- "condprof", # Bug 2003129
-]
["test_forget_about_site_security_headers.js"]