diff options
-rw-r--r-- | templates/config/default.cfg | 4 | ||||
-rw-r--r-- | templates/machines/qemuarm.jinja2 | 4 | ||||
-rw-r--r-- | templates/tests/screenshooter.jinja2 | 8 |
3 files changed, 12 insertions, 4 deletions
diff --git a/templates/config/default.cfg b/templates/config/default.cfg index a66d75e..f3bfd30 100644 --- a/templates/config/default.cfg +++ b/templates/config/default.cfg @@ -14,9 +14,9 @@ test_plan = ["release", "pyagl", "can"] [daily] [snapshot] urlbase = http://download.automotivelinux.org/AGL/snapshots/ -test_plan = ["release", "pyagl", "can", "dumpjournal"] +test_plan = ["release", "pyagl", "can", "screenshooter", "dumpjournal"] [ci] urlbase = http://download.automotivelinux.org/AGL/upload/ci/ -test_plan = ["ci", "pyagl", "can", "dumpjournal"] +test_plan = ["ci", "pyagl", "can", "screenshooter", "dumpjournal"] diff --git a/templates/machines/qemuarm.jinja2 b/templates/machines/qemuarm.jinja2 index ec2ce0b..da7f313 100644 --- a/templates/machines/qemuarm.jinja2 +++ b/templates/machines/qemuarm.jinja2 @@ -9,9 +9,9 @@ {%- set qemu_model = "model=virtio" %} {%- set qemu_cpu = "cortex-a15" %} {%- set qemu_machine = "virt-2.11" %} -{%- set qemu_memory = "2048" %} +{%- set qemu_memory = "4096" %} {%- set qemu_args = "-smp 2 -soundhw hda -device usb-ehci -device virtio-rng-pci -device VGA,vgamem_mb=64,edid=on -device qemu-xhci -device usb-tablet -device usb-kbd" %} -{%- set qemu_cmdline = "console=ttyAMA0,115200 root=/dev/vda verbose systemd.log_color=false " %} +{%- set qemu_cmdline = "console=ttyAMA0,115200 root=/dev/vda verbose systemd.log_color=false vmalloc=256M " %} {%- set guestfs_interface = "virtio" %} {%- set rootfs_type = rootfs_type|default("rootvd") %} {%- if (build_type == 'daily') or (build_type == 'release') or (build_type == 'snapshot') or (build_type == 'prerelease') %} diff --git a/templates/tests/screenshooter.jinja2 b/templates/tests/screenshooter.jinja2 new file mode 100644 index 0000000..6a2e21a --- /dev/null +++ b/templates/tests/screenshooter.jinja2 @@ -0,0 +1,8 @@ +- test: + timeout: + minutes: 15 + definitions: + - repository: https://git.automotivelinux.org/src/qa-testdefinitions + from: git + path: test-suites/short-smoke/screenshooter.yaml + name: screenshooter |