diff options
author | Aníbal Limón <limon.anibal@gmail.com> | 2016-02-21 13:01:03 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-28 11:33:06 +0000 |
commit | 738bd1a6407d87573edcc61c1eb2d276fbffd0f3 (patch) | |
tree | 4384c1d00c29a3433d25febd92f28c300b776604 /meta/classes/testsdk.bbclass | |
parent | 2a410b225ab90d3655a4fd637ae77965c4c9fbfb (diff) | |
download | poky-738bd1a6407d87573edcc61c1eb2d276fbffd0f3.tar.gz |
classes/testsdk: Pass tcname to SDK and SDKExt contexts
tcname is needed for eSDK update testcase will be used for
publish it and then try to update
(From OE-Core rev: a75944a63482597be88ff0f3ce55025647b78e2c)
Signed-off-by: Aníbal Limón <limon.anibal@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/testsdk.bbclass')
-rw-r--r-- | meta/classes/testsdk.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass index 157077e18e..f4dc2c36dc 100644 --- a/meta/classes/testsdk.bbclass +++ b/meta/classes/testsdk.bbclass | |||
@@ -22,7 +22,7 @@ def run_test_context(CTestContext, d, testdir, tcname, pn, *args): | |||
22 | targets = glob.glob(d.expand(testdir + "/tc/environment-setup-*")) | 22 | targets = glob.glob(d.expand(testdir + "/tc/environment-setup-*")) |
23 | for sdkenv in targets: | 23 | for sdkenv in targets: |
24 | bb.plain("Testing %s" % sdkenv) | 24 | bb.plain("Testing %s" % sdkenv) |
25 | tc = CTestContext(d, testdir, sdkenv, args) | 25 | tc = CTestContext(d, testdir, sdkenv, tcname, args) |
26 | 26 | ||
27 | # this is a dummy load of tests | 27 | # this is a dummy load of tests |
28 | # we are doing that to find compile errors in the tests themselves | 28 | # we are doing that to find compile errors in the tests themselves |