Added stubs for bochs and virtualbox, to be filled out.

This commit is contained in:
Georges Dupéron 2018-06-24 23:59:28 +02:00
parent 3f5761696e
commit fffcd83e70
6 changed files with 27 additions and 7 deletions

View File

@ -5,9 +5,19 @@ addons:
packages:
- qemu
- qemu-system-x86
- qemu-system-arm
- virtualbox
- bochs
- sikuli-ide
install:
- true # Nothing to do for now.
env:
- MODE=qemu-system-i386
- MODE=qemu-system-arm
- MODE=virtualbox
- MODE=bochs
script:
- ./test_os.sh qemu-system-i386
- ./test/${MODE}.sh

4
test/bochs.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
set -e
bochs --help

4
test/qemu-system-arm.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
set -e
qemu-system-arm -M help

4
test/qemu-system-i386.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
set -e
qemu-system-i386 --help

4
test/virtualbox.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
set -e
VirtualBox --help

View File

@ -1,6 +0,0 @@
#!/bin/sh
set -e
mode="$1"
qemu-system-i386 --help