disabled Linux format command test

This commit is contained in:
Christian Schnell 2025-08-16 10:25:29 +02:00 committed by Fabian
parent 0541e3bc9b
commit 8b13c70470

View file

@ -273,6 +273,13 @@ await exec_test("floppy-tinycore-linux", CONFIG_TINYCORE_CD, 60, async emulator
console.log("Reading /mnt/fda/x86test.asm");
await expect(emulator, "ls /mnt/fda/x86test.asm\n", ["/mnt/fda/x86test.asm", "tc@box:~$"], 3000);
/*
// Only on github this fails, log:
// tc@box:~$ sudo umount /dev/fd0
// tc@box:~$ sudo mkfs.ext2 -q /dev/fd0
// Could not open /dev/fd0: No such device or address
// tc@box:~$
// TODO: where did /dev/fd0 go?
console.log("Creating empty 1.4M disk for fda");
await expect(emulator, "sudo umount /dev/fd0\n", ["tc@box:~$"], 3000);
emulator.set_fda(new Uint8Array(1440*1024));
@ -284,6 +291,7 @@ await exec_test("floppy-tinycore-linux", CONFIG_TINYCORE_CD, 60, async emulator
console.log("Reading /mnt/fda");
await expect(emulator, "ls /mnt/fda\n", ["lost+found/", "tc@box:~$"], 3000);
*/
});
await exec_test("floppy-state-snapshot", CONFIG_MSDOS622_HD, 60, async emulator =>