summaryrefslogtreecommitdiff
path: root/test/TEST-09-ISSUE-2691
diff options
context:
space:
mode:
authorMartin Pitt <martin.pitt@ubuntu.com>2016-06-23 10:23:29 +0200
committerMartin Pitt <martin.pitt@ubuntu.com>2016-06-24 11:28:35 +0200
commiteaa03c05f72b20610fc7c3b0e943d032fa78f0d1 (patch)
treefdb9fb018d9adcc98796405e40aefdd10f775cbc /test/TEST-09-ISSUE-2691
parenta415d43655b7b82c475506519dfdad6f9291ac41 (diff)
tests: don't fail if QEMU is not available
Fix TEST-{08,09,10,11} to properly skip the test if QEMU is not available instead of failing, like in the other tests.
Diffstat (limited to 'test/TEST-09-ISSUE-2691')
-rwxr-xr-xtest/TEST-09-ISSUE-2691/test.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/TEST-09-ISSUE-2691/test.sh b/test/TEST-09-ISSUE-2691/test.sh
index e247694f01..a782cad37d 100755
--- a/test/TEST-09-ISSUE-2691/test.sh
+++ b/test/TEST-09-ISSUE-2691/test.sh
@@ -22,8 +22,11 @@ check_result_qemu() {
}
test_run() {
- run_qemu || return 1
- check_result_qemu || return 1
+ if run_qemu; then
+ check_result_qemu || return 1
+ else
+ dwarn "can't run QEMU, skipping"
+ fi
return 0
}