summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-06-15 17:59:06 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-06-16 15:40:11 +0100
commit609fc157180778025b2f416736839a7935217731 (patch)
tree493497d19c1d82190bcf39a18c7dfe8031f60d0e /meta/lib/oeqa
parent3ee077f991e7810bf515783058be940a4b8f6adc (diff)
downloadpoky-609fc157180778025b2f416736839a7935217731.tar.gz
runqemu/qemu-helper: Drop tunctl
ip tuntap provides the functionality that we obtained from tunctl. We only needed tunctl when ifconfig was more available than ip. That isn't the case now so we can drop tunctl and all the hoops we need to jump through to build and provide it. (From OE-Core rev: 2abfbca690ff00cb58ce08a65cde006578ee3de9) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r--meta/lib/oeqa/selftest/cases/oescripts.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/oescripts.py b/meta/lib/oeqa/selftest/cases/oescripts.py
index 5b0691a9ff..36acc006ca 100644
--- a/meta/lib/oeqa/selftest/cases/oescripts.py
+++ b/meta/lib/oeqa/selftest/cases/oescripts.py
@@ -123,8 +123,8 @@ class OEGitproxyTests(OEScriptTests):
123class OeRunNativeTest(OESelftestTestCase): 123class OeRunNativeTest(OESelftestTestCase):
124 def test_oe_run_native(self): 124 def test_oe_run_native(self):
125 bitbake("qemu-helper-native -c addto_recipe_sysroot") 125 bitbake("qemu-helper-native -c addto_recipe_sysroot")
126 result = runCmd("oe-run-native qemu-helper-native tunctl -h") 126 result = runCmd("oe-run-native qemu-helper-native qemu-oe-bridge-helper", ignore_status=True)
127 self.assertIn("Delete: tunctl -d device-name [-f tun-clone-device]", result.output) 127 self.assertIn("No bridge helper found", result.output)
128 128
129class OEListPackageconfigTests(OEScriptTests): 129class OEListPackageconfigTests(OEScriptTests):
130 #oe-core.scripts.List_all_the_PACKAGECONFIG's_flags 130 #oe-core.scripts.List_all_the_PACKAGECONFIG's_flags