-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
#!/usr/bin/env node | ||
"use strict"; | ||
|
||
const TEST_RELEASE_BUILD = +process.env.TEST_RELEASE_BUILD; | ||
|
||
const fs = require("fs"); | ||
const V86 = require(`../../build/${TEST_RELEASE_BUILD ? "libv86" : "libv86-debug"}.js`).V86; | ||
|
||
const root_path = __dirname + "/../.."; | ||
|
||
process.on("unhandledRejection", exn => { throw exn; }); | ||
|
||
if(!fs.existsSync(root_path + "/images/fs.json")) | ||
{ | ||
console.log("Missing images/fs.json, test skipped"); | ||
process.exit(0); | ||
} | ||
|
||
const config = { | ||
bios: { url: __dirname + "/../../bios/seabios.bin" }, | ||
vga_bios: { url: __dirname + "/../../bios/vgabios.bin" }, | ||
bzimage_initrd_from_filesystem: true, | ||
cmdline: [ | ||
"rw apm=off vga=0x344 video=vesafb:ypan,vremap:8", | ||
"root=host9p rootfstype=9p rootflags=trans=virtio,cache=loose mitigations=off", | ||
"audit=0 init=/usr/bin/init-openrc net.ifnames=0 biosdevname=0", | ||
].join(" "), | ||
filesystem: { | ||
basefs: root_path + "/images/fs.json", | ||
baseurl: root_path + "/images/arch/", | ||
}, | ||
network_relay_url: "<UNUSED>", | ||
autostart: true, | ||
memory_size: 512 * 1024 * 1024, | ||
log_level: 0, | ||
disable_jit: +process.env.DISABLE_JIT, | ||
}; | ||
|
||
const emulator = new V86(config); | ||
|
||
emulator.bus.register("emulator-started", function() | ||
{ | ||
console.log("Booting now, please stand by"); | ||
|
||
// Trigger a lot of interrupts | ||
// There have been bugs in the pic in the past, e.g. #1203 | ||
const interval = setInterval(() => | ||
{ | ||
emulator.bus.send("mouse-delta", [1, 0]); | ||
}, 0); | ||
|
||
const timeout = setTimeout(() => { | ||
console.warn(emulator.screen_adapter.get_text_screen()); | ||
throw new Error("Timeout"); | ||
}, 120 * 1000); | ||
|
||
let line = ""; | ||
emulator.add_listener("serial0-output-byte", async function(byte) | ||
{ | ||
const chr = String.fromCharCode(byte); | ||
|
||
if(chr < " " && chr !== "\n" && chr !== "\t" || chr > "~") | ||
{ | ||
return; | ||
} | ||
|
||
if(chr === "\n") | ||
{ | ||
console.error("Serial: %s", line); | ||
|
||
if(line.startsWith("localhost login:")) | ||
{ | ||
console.log("Test passed"); | ||
clearTimeout(timeout); | ||
clearInterval(interval); | ||
emulator.destroy(); | ||
} | ||
|
||
line = ""; | ||
} | ||
else | ||
{ | ||
line += chr; | ||
} | ||
}); | ||
}); |