summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-09-13 14:15:14 +1200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-16 15:24:02 +0100
commit7ba62d65d2dd522559d18a3035a583da2c5ffbff (patch)
tree50e8b95b7b0c0404d7d6741a0575c7e7c17a9d4c /meta/lib/oeqa
parentf9b18c398a5859531a2ec23b1853467999a86846 (diff)
downloadpoky-7ba62d65d2dd522559d18a3035a583da2c5ffbff.tar.gz
oeqa/sdkext/devtool: use a smaller module to test node.js functionality
The "forever" package, despite its innocent description, actually drags in a surprising number of dependencies and as a result the nodejs test takes up to 10 minutes as a result. Pick a different example with a much more reasonable set of dependencies. Addresses part of [YOCTO #10254]. (From OE-Core rev: 638ee71da967f093071ba25e0ea5c467dab65339) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r--meta/lib/oeqa/sdkext/devtool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/sdkext/devtool.py b/meta/lib/oeqa/sdkext/devtool.py
index ba12799094..65f41f6875 100644
--- a/meta/lib/oeqa/sdkext/devtool.py
+++ b/meta/lib/oeqa/sdkext/devtool.py
@@ -91,7 +91,7 @@ class DevtoolTest(oeSDKExtTest):
91 @testcase(1478) 91 @testcase(1478)
92 @skipUnlessPassed('test_devtool_location') 92 @skipUnlessPassed('test_devtool_location')
93 def test_recipes_for_nodejs(self): 93 def test_recipes_for_nodejs(self):
94 package_nodejs = "npm://registry.npmjs.org;name=forever;version=0.15.1" 94 package_nodejs = "npm://registry.npmjs.org;name=winston;version=2.2.0"
95 self._run('devtool add %s ' % package_nodejs) 95 self._run('devtool add %s ' % package_nodejs)
96 try: 96 try:
97 self._run('devtool build %s ' % package_nodejs) 97 self._run('devtool build %s ' % package_nodejs)