summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r--meta/lib/oeqa/manual/crops.json12
-rw-r--r--meta/lib/oeqa/sdkext/cases/devtool.py4
2 files changed, 8 insertions, 8 deletions
diff --git a/meta/lib/oeqa/manual/crops.json b/meta/lib/oeqa/manual/crops.json
index 1cf3c8f30c..5cfa653843 100644
--- a/meta/lib/oeqa/manual/crops.json
+++ b/meta/lib/oeqa/manual/crops.json
@@ -234,16 +234,16 @@
234 "expected_results": "this should output the directory of the devtool script and it should be within the sdk workdir you are working in. \n\n" 234 "expected_results": "this should output the directory of the devtool script and it should be within the sdk workdir you are working in. \n\n"
235 }, 235 },
236 "5": { 236 "5": {
237 "action": "devtool add v4l2loopback-driver https://github.com/umlaeute/v4l2loopback.git \n\n", 237 "action": "devtool add kernel-module-hello-world https://git.yoctoproject.org/git/kernel-module-hello-world \n\n",
238 "expected_results": "This should automatically create the recipe v4l2loopback-driver.bb under <crops-esdk-workdir-workspace>/recipes/v4l2loopback-driver/v4l2loopback-driver.bb " 238 "expected_results": "This should automatically create the recipe kernel-module-hello-world.bb under <crops-esdk-workdir-workspace>/recipes/kernel-module-hello-world/kernel-module-hello-world.bb "
239 }, 239 },
240 "6": { 240 "6": {
241 "action": "devtool build v4l2loopback-driver \n\n", 241 "action": "devtool build kernel-module-hello-world \n\n",
242 "expected_results": "This should compile an image \n\n" 242 "expected_results": "This should compile an image \n\n"
243 }, 243 },
244 "7": { 244 "7": {
245 "action": "devtool reset v4l2loopback-driver ", 245 "action": "devtool reset kernel-module-hello-world ",
246 "expected_results": "This cleans sysroot of the v4l2loopback-driver recipe, but it leaves the source tree intact. meaning it does not erase." 246 "expected_results": "This cleans sysroot of the kernel-module-hello-world recipe, but it leaves the source tree intact. meaning it does not erase."
247 } 247 }
248 }, 248 },
249 "summary": "sdkext_devtool_kernelmodule" 249 "summary": "sdkext_devtool_kernelmodule"
@@ -291,4 +291,4 @@
291 "summary": "sdkext_recipes_for_nodejs" 291 "summary": "sdkext_recipes_for_nodejs"
292 } 292 }
293 } 293 }
294] \ No newline at end of file 294]
diff --git a/meta/lib/oeqa/sdkext/cases/devtool.py b/meta/lib/oeqa/sdkext/cases/devtool.py
index 5a02add764..8e92bf8064 100644
--- a/meta/lib/oeqa/sdkext/cases/devtool.py
+++ b/meta/lib/oeqa/sdkext/cases/devtool.py
@@ -73,8 +73,8 @@ class DevtoolTest(OESDKExtTestCase):
73 self._run('devtool reset %s' % recipe) 73 self._run('devtool reset %s' % recipe)
74 74
75 def test_devtool_kernelmodule(self): 75 def test_devtool_kernelmodule(self):
76 docfile = 'https://github.com/umlaeute/v4l2loopback.git' 76 docfile = 'https://git.yoctoproject.org/git/kernel-module-hello-world'
77 recipe = 'v4l2loopback-driver' 77 recipe = 'kernel-module-hello-world'
78 self._run('devtool add %s %s' % (recipe, docfile) ) 78 self._run('devtool add %s %s' % (recipe, docfile) )
79 try: 79 try:
80 self._run('devtool build %s' % recipe) 80 self._run('devtool build %s' % recipe)