Add android-x86 to front page, fix #683

This commit is contained in:
Fabian 2022-07-21 23:24:22 +09:00
parent 590d1c08d1
commit 8e447c6bc5
2 changed files with 21 additions and 1 deletions

View file

@ -49,6 +49,8 @@
A graphical Unix-like operating system. Restored from snapshot.</td></tr>
<tr id="start_helenos"><td><a href="?profile=helenos">HelenOS</a> <small>7.9 MB</small></td><td>
A graphical operating system based on a multiserver microkernel design</td></tr>
<tr id="start_android"><td><a href="?profile=android">Android-x86</a> <small>42 MB</small></td><td>
An x86 port of the Android Open Source Project, version 1.6. Quite slow. Takes about 10 minutes to boot.</td></tr>
<tr id="start_oberon"><td><a href="?profile=oberon">Oberon</a> <small>1.2 MB</small></td><td>
Native Oberon 2.3.6</td></tr>

View file

@ -7,9 +7,9 @@ var TIMEOUT_EXTRA_FACTOR = +process.env.TIMEOUT_EXTRA_FACTOR || 1;
var MAX_PARALLEL_TESTS = +process.env.MAX_PARALLEL_TESTS || 4;
var TEST_NAME = process.env.TEST_NAME;
const TEST_RELEASE_BUILD = +process.env.TEST_RELEASE_BUILD;
const RUN_SLOW_TESTS = +process.env.RUN_SLOW_TESTS;
const VERBOSE = false;
const RUN_SLOW_TESTS = false;
const LOG_SCREEN = false;
try
@ -680,6 +680,24 @@ if(cluster.isMaster)
expect_graphical_size: [1024, 768],
expect_mouse_registered: true,
},
{
name: "Android 1.6",
skip_if_disk_image_missing: true,
timeout: 2 * 60,
cdrom: root_path + "/images/android-x86-1.6-r2.iso",
expect_graphical_mode: true,
expect_graphical_size: [800, 600],
expect_mouse_registered: true,
},
{
name: "Android 4.4",
skip_if_disk_image_missing: true,
timeout: 5 * 60,
hda: root_path + "/images/android_x86_nonsse3_4.4r1_20140904.iso",
expect_graphical_mode: true,
expect_graphical_size: [800, 600],
expect_mouse_registered: true,
},
{
name: "Tiny Core 11 CD",
skip_if_disk_image_missing: 1,