diff --git a/index.html b/index.html index 6c5770d0..6a53f802 100644 --- a/index.html +++ b/index.html @@ -49,6 +49,8 @@ A graphical Unix-like operating system. Restored from snapshot. HelenOS 7.9 MB A graphical operating system based on a multiserver microkernel design + Android-x86 42 MB + An x86 port of the Android Open Source Project, version 1.6. Quite slow. Takes about 10 minutes to boot. Oberon 1.2 MB Native Oberon 2.3.6 diff --git a/tests/full/run.js b/tests/full/run.js index 9e161756..9b687449 100755 --- a/tests/full/run.js +++ b/tests/full/run.js @@ -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,