diff options
author | 2023-03-07 12:22:34 -0800 | |
---|---|---|
committer | 2023-03-07 12:22:34 -0800 | |
commit | f7e4eb83694aa007a492ef66c28ffbe6a2dae791 (patch) | |
tree | 7af25aa5c42a2e1b2b47ba1df35f8caa9054cbeb /test/bun.js/mmap.test.js | |
parent | 36275a44ce7a33587bd26aad120042ab95470ff3 (diff) | |
download | bun-f7e4eb83694aa007a492ef66c28ffbe6a2dae791.tar.gz bun-f7e4eb83694aa007a492ef66c28ffbe6a2dae791.tar.zst bun-f7e4eb83694aa007a492ef66c28ffbe6a2dae791.zip |
Reorganize tests (#2332)
Diffstat (limited to 'test/bun.js/mmap.test.js')
-rw-r--r-- | test/bun.js/mmap.test.js | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/test/bun.js/mmap.test.js b/test/bun.js/mmap.test.js deleted file mode 100644 index 2b15a4000..000000000 --- a/test/bun.js/mmap.test.js +++ /dev/null @@ -1,69 +0,0 @@ -import { describe, it, expect } from "bun:test"; -import { gcTick } from "./gc"; - -describe("Bun.mmap", async () => { - await gcTick(); - const path = `/tmp/bun-mmap-test_${Math.random()}.txt`; - await gcTick(); - await Bun.write(path, "hello"); - await gcTick(); - - it("mmap finalizer", async () => { - let map = Bun.mmap(path); - await gcTick(); - const map2 = Bun.mmap(path); - - map = null; - await gcTick(); - }); - - it("mmap passed to other syscalls", async () => { - const map = Bun.mmap(path); - await gcTick(); - await Bun.write(path + "1", map); - await gcTick(); - const text = await (await Bun.file(path + "1")).text(); - await gcTick(); - - expect(text).toBe(new TextDecoder().decode(map)); - }); - - it("mmap sync", async () => { - const map = Bun.mmap(path); - await gcTick(); - const map2 = Bun.mmap(path); - await gcTick(); - - const old = map[0]; - await gcTick(); - map[0] = 0; - await gcTick(); - expect(map2[0]).toBe(0); - - map2[0] = old; - await gcTick(); - expect(map[0]).toBe(old); - await gcTick(); - await Bun.write(path, "olleh"); - await gcTick(); - expect(new TextDecoder().decode(map)).toBe("olleh"); - await gcTick(); - }); - - it("mmap private", async () => { - await gcTick(); - const map = Bun.mmap(path, { shared: true }); - await gcTick(); - const map2 = Bun.mmap(path, { shared: false }); - await gcTick(); - const old = map[0]; - - await gcTick(); - map2[0] = 0; - await gcTick(); - expect(map2[0]).toBe(0); - await gcTick(); - expect(map[0]).toBe(old); - await gcTick(); - }); -}); |