summaryrefslogtreecommitdiffstats
path: root/toolkit/components/aboutmemory/tests/xpcshell
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /toolkit/components/aboutmemory/tests/xpcshell
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/components/aboutmemory/tests/xpcshell')
-rw-r--r--toolkit/components/aboutmemory/tests/xpcshell/test_gpuprocess.js39
-rw-r--r--toolkit/components/aboutmemory/tests/xpcshell/xpcshell.toml5
2 files changed, 44 insertions, 0 deletions
diff --git a/toolkit/components/aboutmemory/tests/xpcshell/test_gpuprocess.js b/toolkit/components/aboutmemory/tests/xpcshell/test_gpuprocess.js
new file mode 100644
index 0000000000..4a77752b17
--- /dev/null
+++ b/toolkit/components/aboutmemory/tests/xpcshell/test_gpuprocess.js
@@ -0,0 +1,39 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+"use strict";
+
+function run_test() {
+ let gfxInfo = Cc["@mozilla.org/gfx/info;1"].getService(Ci.nsIGfxInfo);
+ let mgr = Cc["@mozilla.org/memory-reporter-manager;1"].getService(
+ Ci.nsIMemoryReporterManager
+ );
+
+ let ok = gfxInfo.controlGPUProcessForXPCShell(true);
+ Assert.equal(ok, true);
+
+ let endTesting = function () {
+ gfxInfo.controlGPUProcessForXPCShell(false);
+ do_test_finished();
+ };
+
+ let foundGPUProcess = false;
+ let onHandleReport = function (
+ aProcess,
+ aPath,
+ aKind,
+ aUnits,
+ aAmount,
+ aDescription
+ ) {
+ if (/GPU \(pid \d+\)/.test(aProcess)) {
+ foundGPUProcess = true;
+ }
+ };
+ let onFinishReporting = function () {
+ Assert.equal(foundGPUProcess, true);
+ endTesting();
+ };
+
+ mgr.getReports(onHandleReport, null, onFinishReporting, null, false);
+ do_test_pending();
+}
diff --git a/toolkit/components/aboutmemory/tests/xpcshell/xpcshell.toml b/toolkit/components/aboutmemory/tests/xpcshell/xpcshell.toml
new file mode 100644
index 0000000000..0b674bc396
--- /dev/null
+++ b/toolkit/components/aboutmemory/tests/xpcshell/xpcshell.toml
@@ -0,0 +1,5 @@
+[DEFAULT]
+head = ""
+run-if = ["os == 'win'"]
+
+["test_gpuprocess.js"]