Sneed Group Holder
e18d08e951
Some checks are pending
ci / Linux (Ubuntu) (push) Waiting to run
ci / linux-asan (push) Waiting to run
ci / linux-msan (push) Waiting to run
ci / linux-ubsan (push) Waiting to run
ci / macOS (push) Waiting to run
ci / macos-asan (push) Waiting to run
ci / macos-ubsan (push) Waiting to run
ci / freebsd (push) Waiting to run
ci / qemu-alpine (arm32v6) (push) Waiting to run
ci / qemu-alpine (arm32v7) (push) Waiting to run
ci / qemu-alpine (arm64v8) (push) Waiting to run
ci / qemu-alpine (i386) (push) Waiting to run
ci / qemu-alpine (s390x) (push) Waiting to run
45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
import * as os from "qjs:os";
|
|
import { assert } from "./assert.js";
|
|
|
|
var worker;
|
|
|
|
function test_worker()
|
|
{
|
|
var counter;
|
|
|
|
worker = new os.Worker("./test_worker_module.js");
|
|
|
|
counter = 0;
|
|
worker.onmessage = function (e) {
|
|
var ev = e.data;
|
|
// print("recv", JSON.stringify(ev));
|
|
switch(ev.type) {
|
|
case "num":
|
|
assert(ev.num, counter);
|
|
counter++;
|
|
if (counter == 10) {
|
|
/* test SharedArrayBuffer modification */
|
|
let sab = new SharedArrayBuffer(10);
|
|
let buf = new Uint8Array(sab);
|
|
worker.postMessage({ type: "sab", buf: buf });
|
|
}
|
|
break;
|
|
case "sab_done":
|
|
{
|
|
let buf = ev.buf;
|
|
/* check that the SharedArrayBuffer was modified */
|
|
assert(buf[2], 10);
|
|
worker.postMessage({ type: "abort" });
|
|
}
|
|
break;
|
|
case "done":
|
|
/* terminate */
|
|
worker.onmessage = null;
|
|
break;
|
|
}
|
|
};
|
|
}
|
|
|
|
if (os.platform !== 'win32') {
|
|
test_worker();
|
|
}
|