summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r--meta/lib/oeqa/selftest/cases/oescripts.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/oescripts.py b/meta/lib/oeqa/selftest/cases/oescripts.py
index c169885cf3..80d8b2c4cc 100644
--- a/meta/lib/oeqa/selftest/cases/oescripts.py
+++ b/meta/lib/oeqa/selftest/cases/oescripts.py
@@ -121,3 +121,9 @@ class OEGitproxyTests(OESelftestTestCase):
121 if dash is None: 121 if dash is None:
122 self.skipTest("No \"dash\" found on test system.") 122 self.skipTest("No \"dash\" found on test system.")
123 self.run_oegitproxy(custom_shell=dash) 123 self.run_oegitproxy(custom_shell=dash)
124
125class OeRunNativeTest(OESelftestTestCase):
126 def test_oe_run_native(self):
127 bitbake("qemu-helper-native -c addto_recipe_sysroot")
128 result = runCmd("oe-run-native qemu-helper-native tunctl -h")
129 self.assertIn("Delete: tunctl -d device-name [-f tun-clone-device]", result.output)