summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/archiver.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-28 14:17:14 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-30 18:56:47 +0100
commitd10ce1059dea4746012bb361c731d0b8b8a50c80 (patch)
tree01c6cb378b0d502496503c9be9dacdf0cbdddab9 /meta/lib/oeqa/selftest/cases/archiver.py
parent6370dd2b42f586aab65f4a4da651c4e7204d32d8 (diff)
downloadpoky-d10ce1059dea4746012bb361c731d0b8b8a50c80.tar.gz
archiver: Default to xz compresison instead of gz
We should default to xz or zstd instead of gz, pick xz for now as it is more tested. (From OE-Core rev: 658f274c161ec67b91f133ee9b5c3767c2925787) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/archiver.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/archiver.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/cases/archiver.py b/meta/lib/oeqa/selftest/cases/archiver.py
index 0194ae9f69..75195241b7 100644
--- a/meta/lib/oeqa/selftest/cases/archiver.py
+++ b/meta/lib/oeqa/selftest/cases/archiver.py
@@ -163,21 +163,21 @@ class Archiver(OESelftestTestCase):
163 Test that the archiver works with `ARCHIVER_MODE[src] = "patched"`. 163 Test that the archiver works with `ARCHIVER_MODE[src] = "patched"`.
164 """ 164 """
165 165
166 self._test_archiver_mode('patched', 'selftest-ed-native-1.14.1-r0-patched.tar.gz') 166 self._test_archiver_mode('patched', 'selftest-ed-native-1.14.1-r0-patched.tar.xz')
167 167
168 def test_archiver_mode_configured(self): 168 def test_archiver_mode_configured(self):
169 """ 169 """
170 Test that the archiver works with `ARCHIVER_MODE[src] = "configured"`. 170 Test that the archiver works with `ARCHIVER_MODE[src] = "configured"`.
171 """ 171 """
172 172
173 self._test_archiver_mode('configured', 'selftest-ed-native-1.14.1-r0-configured.tar.gz') 173 self._test_archiver_mode('configured', 'selftest-ed-native-1.14.1-r0-configured.tar.xz')
174 174
175 def test_archiver_mode_recipe(self): 175 def test_archiver_mode_recipe(self):
176 """ 176 """
177 Test that the archiver works with `ARCHIVER_MODE[recipe] = "1"`. 177 Test that the archiver works with `ARCHIVER_MODE[recipe] = "1"`.
178 """ 178 """
179 179
180 self._test_archiver_mode('patched', 'selftest-ed-native-1.14.1-r0-recipe.tar.gz', 180 self._test_archiver_mode('patched', 'selftest-ed-native-1.14.1-r0-recipe.tar.xz',
181 'ARCHIVER_MODE[recipe] = "1"\n') 181 'ARCHIVER_MODE[recipe] = "1"\n')
182 182
183 def test_archiver_mode_diff(self): 183 def test_archiver_mode_diff(self):