summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-08 12:55:28 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-08 13:09:28 +0100
commit0aaa67a790ab211b35eed58173efa115ceb6e243 (patch)
tree614a7a51ba70edcd1c371b1f4895d68e8059703b /meta
parent25702f3a2f78d13bab6bcca7e9dd331200ebdb09 (diff)
downloadpoky-0aaa67a790ab211b35eed58173efa115ceb6e243.tar.gz
oeqa/bbtests: Fix to ensure DL_DIR is set
write_config overwrites the config rather than appends to it, so ensure we write both variables in one go. (From OE-Core rev: 50a37ee563d9003e21bfb9280f184cd81c62e9bf) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oeqa/selftest/bbtests.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/meta/lib/oeqa/selftest/bbtests.py b/meta/lib/oeqa/selftest/bbtests.py
index ffe0ea5d63..7df6b2f1c5 100644
--- a/meta/lib/oeqa/selftest/bbtests.py
+++ b/meta/lib/oeqa/selftest/bbtests.py
@@ -98,8 +98,9 @@ class BitbakeTests(oeSelfTest):
98 def test_invalid_recipe_src_uri(self): 98 def test_invalid_recipe_src_uri(self):
99 data = 'SRC_URI = "file://invalid"' 99 data = 'SRC_URI = "file://invalid"'
100 self.write_recipeinc('man', data) 100 self.write_recipeinc('man', data)
101 self.write_config("DL_DIR = \"${TOPDIR}/download-selftest\"") 101 self.write_config("""DL_DIR = \"${TOPDIR}/download-selftest\"
102 self.write_config("SSTATE_DIR = \"${TOPDIR}/download-selftest\"") 102SSTATE_DIR = \"${TOPDIR}/download-selftest\"
103""")
103 bitbake('-ccleanall man') 104 bitbake('-ccleanall man')
104 result = bitbake('-c fetch man', ignore_status=True) 105 result = bitbake('-c fetch man', ignore_status=True)
105 bitbake('-ccleanall man') 106 bitbake('-ccleanall man')
@@ -110,8 +111,9 @@ class BitbakeTests(oeSelfTest):
110 111
111 @testcase(171) 112 @testcase(171)
112 def test_rename_downloaded_file(self): 113 def test_rename_downloaded_file(self):
113 self.write_config("DL_DIR = \"${TOPDIR}/download-selftest\"") 114 self.write_config("""DL_DIR = \"${TOPDIR}/download-selftest\"
114 self.write_config("SSTATE_DIR = \"${TOPDIR}/download-selftest\"") 115SSTATE_DIR = \"${TOPDIR}/download-selftest\"
116""")
115 data = 'SRC_URI_append = ";downloadfilename=test-aspell.tar.gz"' 117 data = 'SRC_URI_append = ";downloadfilename=test-aspell.tar.gz"'
116 self.write_recipeinc('aspell', data) 118 self.write_recipeinc('aspell', data)
117 bitbake('-ccleanall aspell') 119 bitbake('-ccleanall aspell')
@@ -174,8 +176,9 @@ class BitbakeTests(oeSelfTest):
174 176
175 @testcase(1035) 177 @testcase(1035)
176 def test_continue(self): 178 def test_continue(self):
177 self.write_config("DL_DIR = \"${TOPDIR}/download-selftest\"") 179 self.write_config("""DL_DIR = \"${TOPDIR}/download-selftest\"
178 self.write_config("SSTATE_DIR = \"${TOPDIR}/download-selftest\"") 180SSTATE_DIR = \"${TOPDIR}/download-selftest\"
181""")
179 self.write_recipeinc('man',"\ndo_fail_task () {\nexit 1 \n}\n\naddtask do_fail_task before do_fetch\n" ) 182 self.write_recipeinc('man',"\ndo_fail_task () {\nexit 1 \n}\n\naddtask do_fail_task before do_fetch\n" )
180 runCmd('bitbake -c cleanall man xcursor-transparent-theme') 183 runCmd('bitbake -c cleanall man xcursor-transparent-theme')
181 result = runCmd('bitbake man xcursor-transparent-theme -k', ignore_status=True) 184 result = runCmd('bitbake man xcursor-transparent-theme -k', ignore_status=True)