icecat: add release icecat-140.6.0-1gnu1 for aramo

This commit is contained in:
Ark74 2026-01-17 18:56:47 -06:00
parent 92fef42cd6
commit 17ba0259bf
3382 changed files with 457689 additions and 569094 deletions

View file

@ -153,10 +153,17 @@ let requests = {
});
},
// For testing.
getIsPolling() {
return { data: io.polling };
},
// For testing.
getOpenFiles() {
return { data: new Set(io.pipes.keys()) };
},
// For testing.
getProcesses() {
let data = new Map(
Array.from(io.processes.values())
@ -166,6 +173,7 @@ let requests = {
return { data };
},
// For testing.
waitForNoProcesses() {
return Promise.all(
Array.from(io.processes.values(), proc => proc.awaitFinished())