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:38:32 +0000 |
commit | 3e833c681a2fd0f6d962441b23c76878f73285d4 (patch) | |
tree | 3c5ad227e27957ec60e402706944461f2b10d3d6 /meta/lib | |
parent | 18c0af5214318e461fd560f9ed45429762e5f569 (diff) | |
download | poky-3e833c681a2fd0f6d962441b23c76878f73285d4.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.
(From OE-Core rev: 055d6814f6de2e54ae27c5fa2e0c40e3e531590e)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-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 dce83babd4..6a6b54c973 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py | |||
@@ -42,7 +42,8 @@ class Wic(oeSelfTest): | |||
42 | 42 | ||
43 | def setUpLocal(self): | 43 | def setUpLocal(self): |
44 | """This code is executed before each test method.""" | 44 | """This code is executed before each test method.""" |
45 | self.write_config('MACHINE_FEATURES_append = " efi"\n') | 45 | self.write_config('IMAGE_FSTYPES = "iso"\n' |
46 | 'MACHINE_FEATURES_append = " efi"\n') | ||
46 | 47 | ||
47 | # Do this here instead of in setUpClass as the base setUp does some | 48 | # Do this here instead of in setUpClass as the base setUp does some |
48 | # clean up which can result in the native tools built earlier in | 49 | # clean up which can result in the native tools built earlier in |