mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 01:19:52 +00:00
selftest/bbtests: improve download rename test
This test was assuming the format of SRC_URI so broke when SRC_URI was changed. Fix the test by hardcoding a complete SRC_URI instead of appending and hoping for the best. (From OE-Core rev: afe1d3073a435ef6c838cc676748842af4c4af83) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
929cebfb97
commit
1bc292fe25
@@ -151,15 +151,16 @@ doesn't exist, yet fetcher didn't report any error. bitbake output: %s" % result
|
|||||||
|
|
||||||
@testcase(171)
|
@testcase(171)
|
||||||
def test_rename_downloaded_file(self):
|
def test_rename_downloaded_file(self):
|
||||||
|
# TODO unique dldir instead of using cleanall
|
||||||
|
# TODO: need to set sstatedir?
|
||||||
self.write_config("""DL_DIR = \"${TOPDIR}/download-selftest\"
|
self.write_config("""DL_DIR = \"${TOPDIR}/download-selftest\"
|
||||||
SSTATE_DIR = \"${TOPDIR}/download-selftest\"
|
SSTATE_DIR = \"${TOPDIR}/download-selftest\"
|
||||||
""")
|
""")
|
||||||
self.track_for_cleanup(os.path.join(self.builddir, "download-selftest"))
|
self.track_for_cleanup(os.path.join(self.builddir, "download-selftest"))
|
||||||
|
|
||||||
data = 'SRC_URI_append = ";downloadfilename=test-aspell.tar.gz"'
|
data = 'SRC_URI = "${GNU_MIRROR}/aspell/aspell-${PV}.tar.gz;downloadfilename=test-aspell.tar.gz"'
|
||||||
self.write_recipeinc('aspell', data)
|
self.write_recipeinc('aspell', data)
|
||||||
bitbake('-ccleanall aspell')
|
result = bitbake('-f -c fetch aspell', ignore_status=True)
|
||||||
result = bitbake('-c fetch aspell', ignore_status=True)
|
|
||||||
self.delete_recipeinc('aspell')
|
self.delete_recipeinc('aspell')
|
||||||
self.assertEqual(result.status, 0, msg = "Couldn't fetch aspell. %s" % result.output)
|
self.assertEqual(result.status, 0, msg = "Couldn't fetch aspell. %s" % result.output)
|
||||||
dl_dir = get_bb_var("DL_DIR")
|
dl_dir = get_bb_var("DL_DIR")
|
||||||
|
|||||||
Reference in New Issue
Block a user