diff --git a/.travis.yml b/.travis.yml index a10c2f2..974336b 100644 --- a/.travis.yml +++ b/.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 \ No newline at end of file + - ./test/${MODE}.sh \ No newline at end of file diff --git a/test/bochs.sh b/test/bochs.sh new file mode 100755 index 0000000..521eb95 --- /dev/null +++ b/test/bochs.sh @@ -0,0 +1,4 @@ +#!/bin/sh +set -e + +bochs --help \ No newline at end of file diff --git a/test/qemu-system-arm.sh b/test/qemu-system-arm.sh new file mode 100755 index 0000000..147d5c2 --- /dev/null +++ b/test/qemu-system-arm.sh @@ -0,0 +1,4 @@ +#!/bin/sh +set -e + +qemu-system-arm -M help \ No newline at end of file diff --git a/test/qemu-system-i386.sh b/test/qemu-system-i386.sh new file mode 100755 index 0000000..2b61ddb --- /dev/null +++ b/test/qemu-system-i386.sh @@ -0,0 +1,4 @@ +#!/bin/sh +set -e + +qemu-system-i386 --help \ No newline at end of file diff --git a/test/virtualbox.sh b/test/virtualbox.sh new file mode 100755 index 0000000..788014c --- /dev/null +++ b/test/virtualbox.sh @@ -0,0 +1,4 @@ +#!/bin/sh +set -e + +VirtualBox --help \ No newline at end of file diff --git a/test_os.sh b/test_os.sh deleted file mode 100755 index 8a57161..0000000 --- a/test_os.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -set -e - -mode="$1" - -qemu-system-i386 --help \ No newline at end of file