diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /toolkit/components/lz4/tests/xpcshell/test_lz4.js | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/components/lz4/tests/xpcshell/test_lz4.js')
-rw-r--r-- | toolkit/components/lz4/tests/xpcshell/test_lz4.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/toolkit/components/lz4/tests/xpcshell/test_lz4.js b/toolkit/components/lz4/tests/xpcshell/test_lz4.js new file mode 100644 index 0000000000..d8da4457dc --- /dev/null +++ b/toolkit/components/lz4/tests/xpcshell/test_lz4.js @@ -0,0 +1,35 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +var WORKER_SOURCE_URI = "chrome://test_lz4/content/worker_lz4.js"; +do_load_manifest("data/chrome.manifest"); + +add_task(function() { + let worker = new ChromeWorker(WORKER_SOURCE_URI); + return new Promise((resolve, reject) => { + worker.onmessage = function(event) { + let data = event.data; + switch (data.kind) { + case "assert_ok": + try { + Assert.ok(data.args[0]); + } catch (ex) { + // Ignore errors + } + return; + case "do_test_complete": + resolve(); + worker.terminate(); + break; + case "do_print": + info(data.args[0]); + } + }; + worker.onerror = function(event) { + let error = new Error(event.message, event.filename, event.lineno); + worker.terminate(); + reject(error); + }; + worker.postMessage("START"); + }); +}); |