diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2014-04-30 13:32:01 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-30 21:52:12 +0100 |
commit | 819ebddae6b78120e5e082423793ff988419b5c4 (patch) | |
tree | 48e370b5309af63bc3699e86e915fe4497970628 /meta/classes/testimage.bbclass | |
parent | c2257fa50071e4704a8152b5f1d16f899b4bed98 (diff) | |
download | openembedded-core-819ebddae6b78120e5e082423793ff988419b5c4.tar.gz openembedded-core-819ebddae6b78120e5e082423793ff988419b5c4.tar.bz2 openembedded-core-819ebddae6b78120e5e082423793ff988419b5c4.zip |
classes/testimage: if start fails, don't try to stop
If we couldn't start the target, it doesn't make sense to try and stop
it here since logically it shouldn't now be in any kind of "started"
state. (It's the start function's job to clean up after itself if it
fails - to that end, fix up the QemuTarget class so that it does.)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/testimage.bbclass')
-rw-r--r-- | meta/classes/testimage.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 691c7f6785..285c6a9d42 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass @@ -209,8 +209,8 @@ def testimage_main(d): target.deploy() + target.start() try: - target.start() if export: exportTests(d,tc) else: |