Added stubs for bochs and virtualbox, to be filled out.
This commit is contained in:
parent
3f5761696e
commit
fffcd83e70
12
.travis.yml
12
.travis.yml
|
@ -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
4
test/bochs.sh
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
bochs --help
|
4
test/qemu-system-arm.sh
Executable file
4
test/qemu-system-arm.sh
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
qemu-system-arm -M help
|
4
test/qemu-system-i386.sh
Executable file
4
test/qemu-system-i386.sh
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
qemu-system-i386 --help
|
4
test/virtualbox.sh
Executable file
4
test/virtualbox.sh
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
VirtualBox --help
|
|
@ -1,6 +0,0 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
mode="$1"
|
||||
|
||||
qemu-system-i386 --help
|
Loading…
Reference in New Issue
Block a user