diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-01-16 17:20:45 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 14:13:29 +0000 |
commit | 055d6814f6de2e54ae27c5fa2e0c40e3e531590e (patch) | |
tree | 030988040dd2902f9c43614344b6808be9b9fae8 | |
parent | 885a5beae86a55cc228fb2aa998a8b1135371eb4 (diff) | |
download | openembedded-core-contrib-055d6814f6de2e54ae27c5fa2e0c40e3e531590e.tar.gz |
selftest: wic: fix test_iso_image test case
Added "iso" to IMAGE_FSTYPES to build iso artifacts required
to fix test of isoimage-isohybrid wic plugin.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
-rw-r--r-- | meta/lib/oeqa/selftest/wic.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index dce83babd48..6a6b54c9735 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py @@ -42,7 +42,8 @@ class Wic(oeSelfTest): def setUpLocal(self): """This code is executed before each test method.""" - self.write_config('MACHINE_FEATURES_append = " efi"\n') + self.write_config('IMAGE_FSTYPES = "iso"\n' + 'MACHINE_FEATURES_append = " efi"\n') # Do this here instead of in setUpClass as the base setUp does some # clean up which can result in the native tools built earlier in |