forked from copy/v86
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.js
executable file
·79 lines (65 loc) · 2.03 KB
/
run.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env node
"use strict";
process.on("unhandledRejection", exn => { throw exn; });
const TEST_RELEASE_BUILD = +process.env.TEST_RELEASE_BUILD;
var V86 = require(`../../build/${TEST_RELEASE_BUILD ? "libv86" : "libv86-debug"}.js`).V86;
var fs = require("fs");
var test_executable = new Uint8Array(fs.readFileSync(__dirname + "/test-jit"));
var emulator = new V86({
bios: { url: __dirname + "/../../bios/seabios.bin" },
vga_bios: { url: __dirname + "/../../bios/vgabios.bin" },
cdrom: { url: __dirname + "/../../images/linux4.iso" },
autostart: true,
memory_size: 32 * 1024 * 1024,
filesystem: {},
disable_jit: +process.env.DISABLE_JIT,
log_level: 0,
});
emulator.bus.register("emulator-started", function()
{
console.error("Booting now, please stand by");
emulator.create_file("test-jit", test_executable);
});
var ran_command = false;
var line = "";
emulator.add_listener("serial0-output-byte", async function(byte)
{
var chr = String.fromCharCode(byte);
if(chr < " " && chr !== "\n" && chr !== "\t" || chr > "~")
{
return;
}
if(chr === "\n")
{
var new_line = line;
console.error("Serial: %s", line);
line = "";
}
else
{
line += chr;
}
if(!ran_command && line.endsWith("~% "))
{
ran_command = true;
emulator.serial0_send("chmod +x /mnt/test-jit\n");
emulator.serial0_send("/mnt/test-jit 2>&1 | tee /mnt/result\n");
emulator.serial0_send("echo test fini''shed\n");
}
if(new_line && new_line.includes("test finished"))
{
console.error("Done. Reading result ...");
const data = await emulator.read_file("/result");
emulator.stop();
let result = Buffer.from(data).toString();
if(result !== "test_shared passed\ntest_consecutive_written passed\n")
{
console.error("[!] Error. Result was:\n" + result);
process.exit(1);
}
else
{
console.log("[+] Test passed");
}
}
});