diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-03 10:58:49 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-03 11:16:12 +0000 |
commit | e05c8d812e6ddaa8e29c9a286dcf787513417cf0 (patch) | |
tree | cdd053ec4bad29c8c08f67d9565a20d41155df20 /meta/classes | |
parent | d3cdea0cc93a1dc2c9b5c6b110a99058bf69f101 (diff) | |
download | poky-e05c8d812e6ddaa8e29c9a286dcf787513417cf0.tar.gz |
testsdk: Drop lockfile usage
We should be able to test sdks in parallel. As far as I can tell, this
restriction crept in for no good reason, based on locks that testimage used
for the non-qemu case.
Therefore remove the lock and allow sdks to test in parallel.
(From OE-Core rev: 54477664dc13c6aa15b3246f328b66591a340659)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/testsdk.bbclass | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass index d566b43ba0..29db5e81c8 100644 --- a/meta/classes/testsdk.bbclass +++ b/meta/classes/testsdk.bbclass | |||
@@ -14,8 +14,6 @@ | |||
14 | # | 14 | # |
15 | # where "<image-name>" is an image like core-image-sato. | 15 | # where "<image-name>" is an image like core-image-sato. |
16 | 16 | ||
17 | TESTSDKLOCK = "${TMPDIR}/testsdk.lock" | ||
18 | |||
19 | def testsdk_main(d): | 17 | def testsdk_main(d): |
20 | import os | 18 | import os |
21 | import subprocess | 19 | import subprocess |
@@ -194,4 +192,4 @@ python do_testsdkext() { | |||
194 | } | 192 | } |
195 | addtask testsdkext | 193 | addtask testsdkext |
196 | do_testsdkext[nostamp] = "1" | 194 | do_testsdkext[nostamp] = "1" |
197 | do_testsdkext[lockfiles] += "${TESTSDKEXTLOCK}" | 195 | |