diff options
Diffstat (limited to 'meta/classes/testimage.bbclass')
-rw-r--r-- | meta/classes/testimage.bbclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 82cbb068ed..8a15c30c79 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass | |||
@@ -31,6 +31,7 @@ TESTIMAGE_AUTO ??= "0" | |||
31 | # TEST_LOG_DIR contains a command ssh log and may contain infromation about what command is running, output and return codes and for qemu a boot log till login. | 31 | # TEST_LOG_DIR contains a command ssh log and may contain infromation about what command is running, output and return codes and for qemu a boot log till login. |
32 | # Booting is handled by this class, and it's not a test in itself. | 32 | # Booting is handled by this class, and it's not a test in itself. |
33 | # TEST_QEMUBOOT_TIMEOUT can be used to set the maximum time in seconds the launch code will wait for the login prompt. | 33 | # TEST_QEMUBOOT_TIMEOUT can be used to set the maximum time in seconds the launch code will wait for the login prompt. |
34 | # TEST_QEMUPARAMS can be used to pass extra parameters to qemu, e.g. "-m 1024" for setting the amount of ram to 1 GB. | ||
34 | 35 | ||
35 | TEST_LOG_DIR ?= "${WORKDIR}/testimage" | 36 | TEST_LOG_DIR ?= "${WORKDIR}/testimage" |
36 | 37 | ||
@@ -63,6 +64,7 @@ TEST_SUITES ?= "${DEFAULT_TEST_SUITES}" | |||
63 | 64 | ||
64 | TEST_QEMUBOOT_TIMEOUT ?= "1000" | 65 | TEST_QEMUBOOT_TIMEOUT ?= "1000" |
65 | TEST_TARGET ?= "qemu" | 66 | TEST_TARGET ?= "qemu" |
67 | TEST_QEMUPARAMS ?= "" | ||
66 | 68 | ||
67 | TESTIMAGEDEPENDS = "" | 69 | TESTIMAGEDEPENDS = "" |
68 | TESTIMAGEDEPENDS_append_qemuall = " qemu-native:do_populate_sysroot qemu-helper-native:do_populate_sysroot qemu-helper-native:do_addto_recipe_sysroot" | 70 | TESTIMAGEDEPENDS_append_qemuall = " qemu-native:do_populate_sysroot qemu-helper-native:do_populate_sysroot qemu-helper-native:do_addto_recipe_sysroot" |
@@ -301,7 +303,8 @@ def testimage_main(d): | |||
301 | try: | 303 | try: |
302 | # We need to check if runqemu ends unexpectedly | 304 | # We need to check if runqemu ends unexpectedly |
303 | # or if the worker send us a SIGTERM | 305 | # or if the worker send us a SIGTERM |
304 | tc.target.start(extra_bootparams=bootparams) | 306 | tc.target.start(params=d.getVar("TEST_QEMUPARAMS"), |
307 | extra_bootparams=bootparams) | ||
305 | results = tc.runTests() | 308 | results = tc.runTests() |
306 | except (RuntimeError, BlockingIOError) as err: | 309 | except (RuntimeError, BlockingIOError) as err: |
307 | if isinstance(err, RuntimeError): | 310 | if isinstance(err, RuntimeError): |