diff options
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/buildoptions.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/buildoptions.py b/meta/lib/oeqa/selftest/cases/buildoptions.py index bfe613b847..135e88e1f0 100644 --- a/meta/lib/oeqa/selftest/cases/buildoptions.py +++ b/meta/lib/oeqa/selftest/cases/buildoptions.py | |||
@@ -177,7 +177,12 @@ class ArchiverTest(OESelftestTestCase): | |||
177 | """ | 177 | """ |
178 | Test for archiving the work directory and exporting the source files. | 178 | Test for archiving the work directory and exporting the source files. |
179 | """ | 179 | """ |
180 | self.write_config("INHERIT += \"archiver\"\nARCHIVER_MODE[src] = \"original\"\nARCHIVER_MODE[srpm] = \"1\"") | 180 | self.write_config(""" |
181 | INHERIT += "archiver" | ||
182 | PACKAGE_CLASSES = "package_rpm" | ||
183 | ARCHIVER_MODE[src] = "original" | ||
184 | ARCHIVER_MODE[srpm] = "1" | ||
185 | """) | ||
181 | res = bitbake("xcursor-transparent-theme", ignore_status=True) | 186 | res = bitbake("xcursor-transparent-theme", ignore_status=True) |
182 | self.assertEqual(res.status, 0, "\nCouldn't build xcursortransparenttheme.\nbitbake output %s" % res.output) | 187 | self.assertEqual(res.status, 0, "\nCouldn't build xcursortransparenttheme.\nbitbake output %s" % res.output) |
183 | deploy_dir_src = get_bb_var('DEPLOY_DIR_SRC') | 188 | deploy_dir_src = get_bb_var('DEPLOY_DIR_SRC') |