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:32:40 +0000 |
commit | a75944a63482597be88ff0f3ce55025647b78e2c (patch) | |
tree | 0258d0a7780ce55d0593f66413850dc89c9d9ae1 /meta/classes/testsdk.bbclass | |
parent | 4ae0c84568f39661722cbceba8ddab22cffe5003 (diff) | |
download | openembedded-core-contrib-a75944a63482597be88ff0f3ce55025647b78e2c.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
Signed-off-by: Aníbal Limón <limon.anibal@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
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 157077e18ec..f4dc2c36dc0 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): targets = glob.glob(d.expand(testdir + "/tc/environment-setup-*")) for sdkenv in targets: bb.plain("Testing %s" % sdkenv) - tc = CTestContext(d, testdir, sdkenv, args) + tc = CTestContext(d, testdir, sdkenv, tcname, args) # this is a dummy load of tests # we are doing that to find compile errors in the tests themselves |