diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2018-06-01 13:03:04 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-04 15:14:43 +0100 |
commit | c1f4177848d25a9121f2a85da655ee414cd424b1 (patch) | |
tree | e4f4d93cb2a11b9e5dec198d020a3ef7f9d53935 | |
parent | 37e3d9d91cc0c8d0dac48463a888c692f4648f66 (diff) | |
download | openembedded-core-c1f4177848d25a9121f2a85da655ee414cd424b1.tar.gz openembedded-core-c1f4177848d25a9121f2a85da655ee414cd424b1.tar.bz2 openembedded-core-c1f4177848d25a9121f2a85da655ee414cd424b1.zip |
testimage.bbclass: also check 'auto' to create rpm index
Having 'auto' in TEST_SUITES will also run the 'dnf' test cases,
so also check it to determine whether to create rpm index or not.
This is to fix the following error when TEST_SUITES = "auto".
RESULTS - dnf.DnfRepoTest.test_dnf_makecache - Testcase 1744: ERROR
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 d97da67681..14252ffc8a 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass @@ -121,7 +121,7 @@ python do_testimage() { testimage_sanity(d) if (d.getVar('IMAGE_PKGTYPE') == 'rpm' - and 'dnf' in d.getVar('TEST_SUITES')): + and ('dnf' in d.getVar('TEST_SUITES') or 'auto' in d.getVar('TEST_SUITES'))): create_rpm_index(d) testimage_main(d) |