diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/testimage-auto.bbclass | 1 | ||||
-rw-r--r-- | meta/classes/testimage.bbclass | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/testimage-auto.bbclass b/meta/classes/testimage-auto.bbclass index a5b8f7f14a..860599d2b5 100644 --- a/meta/classes/testimage-auto.bbclass +++ b/meta/classes/testimage-auto.bbclass | |||
@@ -20,3 +20,4 @@ python do_testimage_auto() { | |||
20 | } | 20 | } |
21 | addtask testimage_auto before do_build after do_rootfs | 21 | addtask testimage_auto before do_build after do_rootfs |
22 | do_testimage_auto[depends] += "${TESTIMAGEDEPENDS}" | 22 | do_testimage_auto[depends] += "${TESTIMAGEDEPENDS}" |
23 | do_testimage_auto[lockfiles] += "${TESTIMAGELOCK}" | ||
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 48e1032326..691c7f6785 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass | |||
@@ -42,12 +42,16 @@ TEST_SERVER_IP ?= "" | |||
42 | TESTIMAGEDEPENDS = "" | 42 | TESTIMAGEDEPENDS = "" |
43 | TESTIMAGEDEPENDS_qemuall = "qemu-native:do_populate_sysroot qemu-helper-native:do_populate_sysroot" | 43 | TESTIMAGEDEPENDS_qemuall = "qemu-native:do_populate_sysroot qemu-helper-native:do_populate_sysroot" |
44 | 44 | ||
45 | TESTIMAGELOCK = "${TMPDIR}/testimage.lock" | ||
46 | TESTIMAGELOCK_qemuall = "" | ||
47 | |||
45 | python do_testimage() { | 48 | python do_testimage() { |
46 | testimage_main(d) | 49 | testimage_main(d) |
47 | } | 50 | } |
48 | addtask testimage | 51 | addtask testimage |
49 | do_testimage[nostamp] = "1" | 52 | do_testimage[nostamp] = "1" |
50 | do_testimage[depends] += "${TESTIMAGEDEPENDS}" | 53 | do_testimage[depends] += "${TESTIMAGEDEPENDS}" |
54 | do_testimage[lockfiles] += "${TESTIMAGELOCK}" | ||
51 | 55 | ||
52 | 56 | ||
53 | def get_tests_list(d): | 57 | def get_tests_list(d): |